Podfile 798 B

123456789101112131415161718192021222324252627
  1. use_frameworks!
  2. # Uncomment the next two lines for pre-release testing on public repo
  3. source 'https://github.com/Firebase/SpecsStaging.git'
  4. source 'https://github.com/CocoaPods/Specs.git'
  5. pod 'FirebaseAnalytics'
  6. pod 'FirebaseCore', :path => '../..'
  7. target 'InAppMessaging_Example_iOS' do
  8. platform :ios, '8.0'
  9. pod 'FirebaseInAppMessagingDisplay', :path => '../..'
  10. pod 'FirebaseInAppMessaging', :path => '../..'
  11. pod 'FirebaseAnalyticsInterop', :path => '../..'
  12. pod 'FirebaseDynamicLinks', :path => '../..'
  13. pod 'FirebaseInstanceID', :path => '../..'
  14. end
  15. target 'InAppMessaging_Tests_iOS' do
  16. platform :ios, '8.0'
  17. pod 'FirebaseInAppMessaging', :path => '../..'
  18. pod 'FirebaseInstanceID', :path => '../..'
  19. pod 'FirebaseAnalyticsInterop', :path => '../..'
  20. pod 'OCMock'
  21. end