| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- # Uncomment the next two lines for pre-release testing
- #source 'sso://cpdc-internal/spec'
- #source 'https://github.com/CocoaPods/Specs.git'
- use_frameworks!
- target 'Firestore_Example_iOS' do
- platform :ios, '8.0'
- # 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.1.0'
- pod 'FirebaseAuth', :path => '../../'
- pod 'FirebaseCore', :path => '../../'
- pod 'FirebaseFirestore', :path => '../../'
- target 'Firestore_Tests_iOS' do
- inherit! :search_paths
- pod 'leveldb-library'
- pod 'OCMock'
- pod 'GoogleTest', :podspec => 'GoogleTest.podspec'
- end
- target 'Firestore_IntegrationTests_iOS' do
- inherit! :search_paths
- pod 'OCMock'
- end
- target 'Firestore_SwiftTests_iOS' do
- pod 'FirebaseFirestoreSwift', :path => '../../'
- end
- target 'SwiftBuildTest' do
- platform :ios, '8.0'
- end
- target 'Firestore_FuzzTests_iOS' do
- inherit! :search_paths
- pod 'LibFuzzer', :podspec => 'LibFuzzer.podspec'
- end
- end
|