Podfile 3.3 KB

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