forked from RxSwiftCommunity/RxFirebase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
28 lines (23 loc) · 873 Bytes
/
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
use_frameworks!
target 'RxFirebase_Example' do
platform :ios, '13.0'
pod 'RxFirebase/Storage', :path => './'
pod 'RxFirebase/Firestore', :path => './'
pod 'RxFirebase/RemoteConfig', :path => './'
pod 'RxFirebase/Database', :path => './'
pod 'RxFirebase/Functions', :path => './'
pod 'RxFirebase/Auth', :git => 'https://github.com/alejandro-ulloa-dev/RxFirebaseAuth.git'
# Force local pods
pod 'RxFirebaseStorage', :path => './'
pod 'RxFirebaseFirestore', :path => './'
pod 'RxFirebaseRemoteConfig', :path => './'
pod 'RxFirebaseDatabase', :path => './'
pod 'RxFirebaseFunctions', :path => './'
pod 'RxFirebaseAuthentication', :path => './'
end
target 'RxFirebase_Example_tvOS' do
platform :tvos, '10.0'
pod 'RxFirebaseStorage', :path => './'
pod 'RxFirebaseDatabase', :path => './'
pod 'RxFirebaseAuthentication', :path => './'
end