Podfile 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. use_frameworks!
  2. target 'Core_Example_iOS' do
  3. platform :ios, '8.0'
  4. pod 'FirebaseCommunity/Core', :path => '../'
  5. target 'Core_Tests_iOS' do
  6. inherit! :search_paths
  7. pod 'OCMock'
  8. end
  9. end
  10. target 'Core_Example_macOS' do
  11. platform :osx, '10.10'
  12. pod 'FirebaseCommunity/Core', :path => '../'
  13. target 'Core_Tests_macOS' do
  14. inherit! :search_paths
  15. pod 'OCMock'
  16. end
  17. end
  18. target 'Auth_Example_iOS' do
  19. platform :ios, '8.0'
  20. pod 'FirebaseCommunity/Auth', :path => '../'
  21. target 'Auth_Tests_iOS' do
  22. inherit! :search_paths
  23. pod 'OCMock'
  24. end
  25. end
  26. target 'Auth_Example_macOS' do
  27. platform :osx, '10.10'
  28. pod 'FirebaseCommunity/Auth', :path => '../'
  29. target 'Auth_Tests_macOS' do
  30. inherit! :search_paths
  31. pod 'OCMock'
  32. end
  33. end
  34. target 'Auth_Sample' do
  35. platform :ios, '8.0'
  36. pod 'FirebaseCommunity/Auth', :path => '../'
  37. pod 'FBSDKLoginKit'
  38. pod 'GoogleSignIn'
  39. # to FirebaseCore
  40. pod 'FirebaseInstanceID'
  41. pod 'GTMSessionFetcher/Core'
  42. end
  43. target 'Auth_SwiftSample' do
  44. platform :ios, '8.0'
  45. pod 'FirebaseCommunity/Auth', :path => '../'
  46. pod 'GoogleSignIn'
  47. pod 'FirebaseInstanceID'
  48. end
  49. target 'Auth_ApiTests' do
  50. platform :ios, '8.0'
  51. pod 'FirebaseCommunity/Auth', :path => '../'
  52. pod 'GoogleSignIn'
  53. pod 'FirebaseInstanceID'
  54. pod 'GTMSessionFetcher/Core'
  55. end
  56. target 'Auth_EarlGreyTests' do
  57. platform :ios, '8.0'
  58. pod 'FirebaseCommunity/Auth', :path => '../'
  59. pod 'GoogleSignIn'
  60. pod 'FirebaseInstanceID'
  61. pod 'EarlGrey'
  62. end
  63. target 'Database_Example_iOS' do
  64. platform :ios, '8.0'
  65. pod 'FirebaseCommunity/Database', :path => '../'
  66. target 'Database_Tests_iOS' do
  67. inherit! :search_paths
  68. pod 'OCMock'
  69. end
  70. target 'Database_IntegrationTests_iOS' do
  71. inherit! :search_paths
  72. pod 'OCMock'
  73. end
  74. end
  75. target 'Database_Example_macOS' do
  76. platform :osx, '10.10'
  77. pod 'FirebaseCommunity/Database', :path => '../'
  78. target 'Database_Tests_macOS' do
  79. inherit! :search_paths
  80. pod 'OCMock'
  81. end
  82. target 'Database_IntegrationTests_macOS' do
  83. inherit! :search_paths
  84. pod 'OCMock'
  85. end
  86. end
  87. target 'Messaging_Example_iOS' do
  88. platform :ios, '8.0'
  89. pod 'FirebaseCommunity/Messaging', :path => '../'
  90. pod 'FirebaseInstanceID'
  91. target 'Messaging_Tests_iOS' do
  92. inherit! :search_paths
  93. pod 'OCMock'
  94. end
  95. end
  96. target 'Storage_Example_iOS' do
  97. platform :ios, '8.0'
  98. pod 'FirebaseCommunity/Storage', :path => '../'
  99. target 'Storage_Tests_iOS' do
  100. inherit! :search_paths
  101. pod 'OCMock'
  102. end
  103. target 'Storage_IntegrationTests_iOS' do
  104. inherit! :search_paths
  105. pod 'OCMock'
  106. end
  107. end
  108. target 'Storage_Example_macOS' do
  109. platform :osx, '10.10'
  110. pod 'FirebaseCommunity/Storage', :path => '../'
  111. target 'Storage_Tests_macOS' do
  112. inherit! :search_paths
  113. pod 'OCMock'
  114. end
  115. target 'Storage_IntegrationTests_macOS' do
  116. inherit! :search_paths
  117. pod 'OCMock'
  118. end
  119. end