Podfile 739 B

1234567891011121314151617181920212223242526
  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 'FirebaseCore', :path => '../..'
  6. target 'InAppMessaging_Example_iOS' do
  7. platform :ios, '8.0'
  8. pod 'FirebaseInAppMessagingDisplay', :path => '../..'
  9. pod 'FirebaseInAppMessaging', :path => '../..'
  10. pod 'FirebaseAnalyticsInterop', :path => '../..'
  11. pod 'FirebaseAnalytics'
  12. pod 'FirebaseDynamicLinks', :path => '../..'
  13. end
  14. target 'InAppMessaging_Tests_iOS' do
  15. platform :ios, '8.0'
  16. pod 'FirebaseInAppMessaging', :path => '../..'
  17. pod 'FirebaseInstanceID'
  18. pod 'FirebaseAnalyticsInterop', :path => '../..'
  19. pod 'OCMock'
  20. end