diff options
author | Paul Beusterien <paulbeusterien@google.com> | 2017-11-21 17:02:22 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-21 17:02:22 -0800 |
commit | 3e592526ec889887874efd0e46ba3cf72f2f6f98 (patch) | |
tree | de8cc73df387cd982ca9bbf517f8ff1a9c41cce3 /Example/Podfile | |
parent | 32d6d6170fdca6f12a3fa51619081ad855815803 (diff) |
Buildable and interoperable source pods (#444)
Diffstat (limited to 'Example/Podfile')
-rw-r--r-- | Example/Podfile | 126 |
1 files changed, 62 insertions, 64 deletions
diff --git a/Example/Podfile b/Example/Podfile index 64800f3..a5ad33c 100644 --- a/Example/Podfile +++ b/Example/Podfile @@ -1,10 +1,14 @@ - use_frameworks! +pod 'FirebaseCore', :path => '../' + target 'Core_Example_iOS' do platform :ios, '8.0' - pod 'FirebaseCommunity/Core', :path => '../' + # 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', '4.6.0' target 'Core_Tests_iOS' do inherit! :search_paths @@ -12,127 +16,121 @@ target 'Core_Example_iOS' do end end -target 'Core_Example_macOS' do - platform :osx, '10.10' +target 'Auth_Example_iOS' do + platform :ios, '8.0' - pod 'FirebaseCommunity/Core', :path => '../' + pod 'FirebaseAuth', :path => '../' - target 'Core_Tests_macOS' do + target 'Auth_Tests_iOS' do inherit! :search_paths pod 'OCMock' end end -target 'Auth_Example_iOS' do +target 'Database_Example_iOS' do platform :ios, '8.0' - pod 'FirebaseCommunity/Auth', :path => '../' + pod 'FirebaseDatabase', :path => '../' - target 'Auth_Tests_iOS' do + target 'Database_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 + target 'Database_IntegrationTests_iOS' do inherit! :search_paths pod 'OCMock' end end -target 'Auth_Sample' do - platform :ios, '8.0' - pod 'FirebaseCommunity/Auth', :path => '../' - pod 'FBSDKLoginKit' - pod 'GoogleSignIn' - # to FirebaseCore - pod 'FirebaseInstanceID' - pod 'GTMSessionFetcher/Core' -end - -target 'Auth_SwiftSample' do +target 'Messaging_Example_iOS' do platform :ios, '8.0' - pod 'FirebaseCommunity/Auth', :path => '../' - pod 'GoogleSignIn' - pod 'FirebaseInstanceID' -end -target 'Auth_ApiTests' do - platform :ios, '8.0' - pod 'FirebaseCommunity/Auth', :path => '../' - pod 'GoogleSignIn' + pod 'FirebaseMessaging' , :path => '../' pod 'FirebaseInstanceID' - pod 'GTMSessionFetcher/Core' -end -target 'Auth_EarlGreyTests' do - platform :ios, '8.0' - pod 'FirebaseCommunity/Auth', :path => '../' - pod 'GoogleSignIn' - pod 'FirebaseInstanceID' - pod 'EarlGrey' + target 'Messaging_Tests_iOS' do + inherit! :search_paths + pod 'OCMock' + end end -target 'Database_Example_iOS' do +target 'Storage_Example_iOS' do platform :ios, '8.0' - pod 'FirebaseCommunity/Database', :path => '../' + pod 'FirebaseStorage', :path => '../' - target 'Database_Tests_iOS' do + target 'Storage_Tests_iOS' do inherit! :search_paths pod 'OCMock' end - target 'Database_IntegrationTests_iOS' do + target 'Storage_IntegrationTests_iOS' do inherit! :search_paths pod 'OCMock' end end -target 'Database_Example_macOS' do - platform :osx, '10.10' +target 'Auth_Sample' do + platform :ios, '8.0' + pod 'FirebaseAuth', :path => '../' + pod 'FirebaseCore', :path => '../' + pod 'FBSDKLoginKit' + pod 'GoogleSignIn' + pod 'FirebaseInstanceID' + pod 'GTMSessionFetcher/Core' - pod 'FirebaseCommunity/Database', :path => '../' + target 'Auth_ApiTests' do + inherit! :search_paths + end - target 'Database_Tests_macOS' do + target 'Auth_EarlGreyTests' do inherit! :search_paths - pod 'OCMock' + pod 'EarlGrey' end +end - target 'Database_IntegrationTests_macOS' do +target 'Auth_SwiftSample' do + platform :ios, '8.0' + pod 'FirebaseAuth', :path => '../' + pod 'FirebaseCore', :path => '../' + pod 'GoogleSignIn' + pod 'FirebaseInstanceID' +end + +target 'Core_Example_macOS' do + platform :osx, '10.10' + + pod 'FirebaseCore', :path => '../' + + target 'Core_Tests_macOS' do inherit! :search_paths pod 'OCMock' end end -target 'Messaging_Example_iOS' do - platform :ios, '8.0' +target 'Auth_Example_macOS' do + platform :osx, '10.10' - pod 'FirebaseCommunity/Messaging', :path => '../' - pod 'FirebaseInstanceID' + pod 'FirebaseAuth', :path => '../' - target 'Messaging_Tests_iOS' do + target 'Auth_Tests_macOS' do inherit! :search_paths pod 'OCMock' end end -target 'Storage_Example_iOS' do - platform :ios, '8.0' +target 'Database_Example_macOS' do + platform :osx, '10.10' - pod 'FirebaseCommunity/Storage', :path => '../' + pod 'FirebaseDatabase', :path => '../' - target 'Storage_Tests_iOS' do + target 'Database_Tests_macOS' do inherit! :search_paths pod 'OCMock' end - target 'Storage_IntegrationTests_iOS' do + target 'Database_IntegrationTests_macOS' do inherit! :search_paths pod 'OCMock' end @@ -141,7 +139,7 @@ end target 'Storage_Example_macOS' do platform :osx, '10.10' - pod 'FirebaseCommunity/Storage', :path => '../' + pod 'FirebaseStorage', :path => '../' target 'Storage_Tests_macOS' do inherit! :search_paths |