| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- use_frameworks!
- target 'Core_Example_iOS' do
- platform :ios, '8.0'
- pod 'FirebaseCommunity/Core', :path => '../'
- target 'Core_Tests_iOS' do
- inherit! :search_paths
- pod 'OCMock'
- end
- end
- target 'Core_Example_macOS' do
- platform :osx, '10.10'
- pod 'FirebaseCommunity/Core', :path => '../'
- target 'Core_Tests_macOS' do
- inherit! :search_paths
- pod 'OCMock'
- end
- end
- target 'Auth_Example_iOS' do
- platform :ios, '8.0'
- pod 'FirebaseCommunity/Auth', :path => '../'
- target 'Auth_Tests_iOS' do
- inherit! :search_paths
- pod 'OCMock'
- end
- end
- target 'Auth_Example_macOS' do
- platform :osx, '10.10'
- pod 'FirebaseCommunity/Auth', :path => '../'
- target 'Auth_Tests_macOS' do
- inherit! :search_paths
- pod 'OCMock'
- end
- end
- target 'Database_Example_iOS' do
- platform :ios, '8.0'
- pod 'FirebaseCommunity/Database', :path => '../'
- target 'Database_Tests_iOS' do
- inherit! :search_paths
- pod 'OCMock'
- end
- target 'Database_IntegrationTests_iOS' do
- inherit! :search_paths
- pod 'OCMock'
- end
- end
- target 'Database_Example_macOS' do
- platform :osx, '10.10'
- pod 'FirebaseCommunity/Database', :path => '../'
- target 'Database_Tests_macOS' do
- inherit! :search_paths
- pod 'OCMock'
- end
- target 'Database_IntegrationTests_macOS' do
- inherit! :search_paths
- pod 'OCMock'
- end
- end
- target 'Messaging_Example_iOS' do
- platform :ios, '8.0'
- pod 'FirebaseCommunity/Messaging', :path => '../'
- # Lock to the 1.0.9 version of InstanceID since 1.0.10 added a dependency
- # to FirebaseCore
- pod 'FirebaseInstanceID', '1.0.9'
- target 'Messaging_Tests_iOS' do
- inherit! :search_paths
- pod 'OCMock'
- end
- end
- target 'Storage_Example_iOS' do
- platform :ios, '8.0'
- pod 'FirebaseCommunity/Storage', :path => '../'
- target 'Storage_Tests_iOS' do
- inherit! :search_paths
- pod 'OCMock'
- end
- target 'Storage_IntegrationTests_iOS' do
- inherit! :search_paths
- pod 'OCMock'
- end
- end
- target 'Storage_Example_macOS' do
- platform :osx, '10.10'
- pod 'FirebaseCommunity/Storage', :path => '../'
- target 'Storage_Tests_macOS' do
- inherit! :search_paths
- pod 'OCMock'
- end
- target 'Storage_IntegrationTests_macOS' do
- inherit! :search_paths
- pod 'OCMock'
- end
- end
|