Podfile 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. # Uncomment the next two lines for pre-release testing on internal repo
  2. #source 'sso://cpdc-internal/firebase'
  3. #source 'https://cdn.cocoapods.org/'
  4. source 'https://cdn.cocoapods.org/'
  5. use_frameworks!
  6. pod 'FirebaseAnalyticsInterop', :path => '../'
  7. pod 'FirebaseAuthInterop', :path => '../'
  8. pod 'FirebaseCore', :path => '../'
  9. pod 'FirebaseInstallations', :path => '../'
  10. pod 'FirebaseCoreDiagnostics', :path => '../'
  11. pod 'FirebaseCoreDiagnosticsInterop', :path => '../'
  12. pod 'GoogleDataTransport', :path => '../'
  13. pod 'GoogleDataTransportCCTSupport', :path => '../'
  14. pod 'GoogleUtilities', :path => '../'
  15. target 'Core_Example_iOS' do
  16. platform :ios, '8.0'
  17. # The next line is the forcing function for the Firebase pod. The Firebase
  18. # version's subspecs should depend on the component versions in the
  19. # corresponding podspec's in this repo.
  20. pod 'Firebase/CoreOnly', '6.13.0'
  21. target 'Core_Tests_iOS' do
  22. inherit! :search_paths
  23. pod 'OCMock', '~> 3.4.0'
  24. end
  25. end
  26. target 'Auth_Example_iOS' do
  27. platform :ios, '8.0'
  28. pod 'FirebaseAuth', :path => '../'
  29. target 'Auth_Tests_iOS' do
  30. inherit! :search_paths
  31. pod 'OCMock', '~> 3.4.0'
  32. end
  33. end
  34. target 'Database_Example_iOS' do
  35. platform :ios, '8.0'
  36. pod 'FirebaseDatabase', :path => '../'
  37. target 'Database_Tests_iOS' do
  38. inherit! :search_paths
  39. end
  40. target 'Database_IntegrationTests_iOS' do
  41. inherit! :search_paths
  42. end
  43. end
  44. target 'DynamicLinks_Example_iOS' do
  45. platform :ios, '8.0'
  46. pod 'FirebaseDynamicLinks', :path => '../'
  47. pod 'GoogleUtilities/MethodSwizzler', :path => '../'
  48. pod 'GoogleUtilities/SwizzlerTestHelpers', :path => '../'
  49. target 'DynamicLinks_Tests_iOS' do
  50. inherit! :search_paths
  51. pod 'OCMock', '~> 3.4.0'
  52. end
  53. end
  54. target 'FDLBuilderTestAppObjC' do
  55. platform :ios, '8.0'
  56. pod 'FirebaseDynamicLinks', :path => '../'
  57. target 'FDLBuilderTestAppObjCEarlGrey' do
  58. inherit! :search_paths
  59. pod 'EarlGrey'
  60. end
  61. end
  62. target 'InstanceID_Example_iOS' do
  63. platform :ios, '8.0'
  64. pod 'FirebaseInstanceID' , :path => '../'
  65. target 'InstanceID_Tests_iOS' do
  66. inherit! :search_paths
  67. pod 'OCMock', '~> 3.4.0'
  68. end
  69. end
  70. target 'Messaging_Example_iOS' do
  71. platform :ios, '8.0'
  72. pod 'FirebaseMessaging' , :path => '../'
  73. target 'Messaging_Tests_iOS' do
  74. inherit! :search_paths
  75. pod 'OCMock', '~> 3.4.0'
  76. end
  77. end
  78. target 'Messaging_NotificationService_iOS' do
  79. platform :ios, '8.0'
  80. pod 'FirebaseMessaging' , :path => '../'
  81. end
  82. target 'Messaging_Sample_iOS' do
  83. platform :ios, '8.0'
  84. pod 'FirebaseMessaging' , :path => '../'
  85. end
  86. target 'Storage_Example_iOS' do
  87. platform :ios, '8.0'
  88. pod 'FirebaseStorage', :path => '../'
  89. target 'Storage_Tests_iOS' do
  90. inherit! :search_paths
  91. pod 'OCMock', '~> 3.4.0'
  92. end
  93. target 'Storage_IntegrationTests_iOS' do
  94. inherit! :search_paths
  95. end
  96. end
  97. target 'Auth_Sample' do
  98. platform :ios, '8.0'
  99. pod 'FirebaseAuth', :path => '../'
  100. pod 'FirebaseCore', :path => '../'
  101. pod 'FirebaseCoreDiagnostics', :path => '../'
  102. pod 'FirebaseCoreDiagnosticsInterop', :path => '../'
  103. pod 'FBSDKLoginKit'
  104. pod 'GoogleSignIn', '~> 5'
  105. pod 'FirebaseInstanceID', :path => '../'
  106. pod 'GoogleDataTransport', :path => '../'
  107. pod 'GoogleDataTransportCCTSupport', :path => '../'
  108. pod 'GTMSessionFetcher/Core'
  109. target 'Auth_ApiTests' do
  110. inherit! :search_paths
  111. end
  112. target 'Auth_E2eTests' do
  113. inherit! :search_paths
  114. pod 'EarlGrey'
  115. end
  116. end