45 lines
1.1 KiB
Ruby
45 lines
1.1 KiB
Ruby
install! 'cocoapods', :deterministic_uuids => false
|
|
# Uncomment this line to define a global platform for your project
|
|
# platform :ios, '8.0'
|
|
|
|
target 'ReactNativeFirebaseDemo' do
|
|
platform :ios, '8.0'
|
|
# Uncomment this line if you're using Swift or would like to use dynamic frameworks
|
|
# use_frameworks!
|
|
|
|
react_native_path = "../node_modules/react-native"
|
|
pod "yoga", :path => "#{react_native_path}/ReactCommon/yoga"
|
|
|
|
# Pods for ReactNativeFirebaseDemo
|
|
pod 'React', :path => '../node_modules/react-native', :subspecs => [
|
|
'Core',
|
|
'BatchedBridge',
|
|
'RCTText',
|
|
'RCTNetwork',
|
|
'RCTWebSocket',
|
|
]
|
|
|
|
pod 'Firebase/AdMob'
|
|
pod 'Firebase/Auth'
|
|
pod 'Firebase/Core'
|
|
pod 'Firebase/Crash'
|
|
pod 'Firebase/Database'
|
|
pod 'Firebase/DynamicLinks'
|
|
pod 'Firebase/Firestore'
|
|
pod 'Firebase/Messaging'
|
|
pod 'Firebase/RemoteConfig'
|
|
pod 'Firebase/Storage'
|
|
pod 'Firebase/Performance'
|
|
|
|
|
|
pod 'RNFirebase', :path => './../../'
|
|
|
|
post_install do |installer|
|
|
installer.pods_project.targets.each do |target|
|
|
if target.name == "React"
|
|
target.remove_from_project
|
|
end
|
|
end
|
|
end
|
|
end
|