mirror of
https://github.com/zhigang1992/react-native-firebase-starter.git
synced 2026-04-28 20:25:42 +08:00
27 lines
703 B
Ruby
27 lines
703 B
Ruby
# Uncomment the next line to define a global platform for your project
|
|
platform :ios, '9.0'
|
|
|
|
target 'RNFirebaseStarter' do
|
|
# Uncomment the next line if you're using Swift or would like to use dynamic frameworks
|
|
# use_frameworks!
|
|
|
|
# Pods for RNFirebaseStarter
|
|
|
|
# Required by RNFirebase
|
|
pod 'Firebase/Core'
|
|
|
|
# [OPTIONAL PODS] - comment out pods for firebase products you won't be using.
|
|
pod 'Firebase/AdMob'
|
|
pod 'Firebase/Auth'
|
|
pod 'Firebase/Database'
|
|
pod 'Firebase/DynamicLinks'
|
|
pod 'Firebase/Performance'
|
|
pod 'Firebase/Firestore'
|
|
pod 'Firebase/Messaging'
|
|
pod 'Firebase/RemoteConfig'
|
|
pod 'Firebase/Storage'
|
|
|
|
pod 'Fabric', '~> 1.7.6'
|
|
pod 'Crashlytics', '~> 3.10.1'
|
|
end
|