-
Notifications
You must be signed in to change notification settings - Fork 1.5k
/
Podfile
35 lines (29 loc) · 1.16 KB
/
Podfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
source 'https://github.com/firebase/SpecsDev.git'
source 'https://github.com/firebase/SpecsStaging.git'
source 'https://cdn.cocoapods.org/'
use_frameworks!
target 'SampleWatchAppWatchKitExtension' do
platform :watchos, '7.0'
pod 'FirebaseCore', :path => '../../'
pod 'FirebaseCoreInternal', :path => '../../'
pod 'FirebaseMessaging', :path => '../../'
pod 'FirebaseCoreExtension', :path => '../../'
pod 'FirebaseCoreInternal', :path => '../../'
pod 'FirebaseInstallations', :path => '../../'
pod 'FirebaseStorage', :path => '../../'
pod 'FirebaseRemoteConfig', :path => '../../'
pod 'FirebaseABTesting', :path => '../../'
pod 'FirebaseDatabase', :path => '../../'
pod 'FirebaseAppCheckInterop', :path => '../../'
pod 'FirebaseAuthInterop', :path => '../../'
pod 'FirebaseRemoteConfigInterop', :path => '../../'
pod 'Firebase/Messaging', :path => '../../'
pod 'Firebase/Storage', :path => '../../'
pod 'Firebase/RemoteConfig', :path => '../../'
pod 'Firebase/ABTesting', :path => '../../'
pod 'Firebase/Database', :path => '../../'
end
target 'ServiceExtension' do
platform :watchos, '7.0'
pod 'FirebaseMessaging', :path => '../../'
end