| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- # Uncomment the next two lines for pre-release testing
- #source 'sso://cpdc-internal/spec'
- #source 'https://github.com/CocoaPods/Specs.git'
- # The next line is the forcing function for the Firebase pod. The Firebase
- # version's subspecs should depend on the component versions in their
- # corresponding podspec's.
- pod 'Firebase/Core', '5.0.0'
- use_frameworks!
- pod 'FirebaseAuth', :path => '../../'
- pod 'FirebaseCore', :path => '../../'
- pod 'FirebaseFirestore', :path => '../../'
- target 'Firestore_Example_iOS' do
- platform :ios, '8.0'
- target 'Firestore_Tests_iOS' do
- inherit! :search_paths
- pod 'leveldb-library'
- pod 'OCMock'
- pod 'GoogleTest', :podspec => 'Tests/GoogleTest/GoogleTest.podspec'
- end
- target 'Firestore_IntegrationTests_iOS' do
- inherit! :search_paths
- pod 'OCMock'
- end
- target 'Firestore_SwiftTests_iOS' do
- pod 'FirebaseFirestoreSwift', :path => '../../'
- end
- end
- target 'SwiftBuildTest' do
- platform :ios, '8.0'
- end
|