mirror of
https://github.com/caoer/RxFirebase.git
synced 2026-01-12 17:52:21 +08:00
25 lines
768 B
Ruby
25 lines
768 B
Ruby
use_frameworks!
|
|
|
|
target 'RxFirebase_Example' do
|
|
pod 'RxFirebase/Storage', :path => './'
|
|
pod 'RxFirebase/Firestore', :path => './'
|
|
pod 'RxFirebase/RemoteConfig', :path => './'
|
|
pod 'RxFirebase/Database', :path => './'
|
|
pod 'RxFirebase/Functions', :path => './'
|
|
pod 'RxFirebase/Auth', :path => './'
|
|
|
|
# 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
|
|
pod 'RxFirebaseStorage', :path => './'
|
|
pod 'RxFirebaseDatabase', :path => './'
|
|
pod 'RxFirebaseAuthentication', :path => './'
|
|
end
|