mirror of
https://github.com/zhigang1992/react-native-firebase-starter.git
synced 2026-01-12 22:50:21 +08:00
* Update Firebase iOS SDK to v5.11.0 * Update build.gradle * Update build.gradle * Update package.json * Update build.gradle * misc v5.1.0 changes
30 lines
947 B
Ruby
30 lines
947 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', '~> 5.11.0'
|
|
|
|
# [OPTIONAL PODS] - comment out pods for firebase products you won't be using.
|
|
pod 'Firebase/AdMob', '~> 5.11.0'
|
|
pod 'Firebase/Auth', '~> 5.11.0'
|
|
pod 'Firebase/Core', '~> 5.11.0'
|
|
pod 'Firebase/Database', '~> 5.11.0'
|
|
pod 'Firebase/Functions', '~> 5.11.0'
|
|
pod 'Firebase/DynamicLinks', '~> 5.11.0'
|
|
pod 'Firebase/Firestore', '~> 5.11.0'
|
|
# pod 'Firebase/Invites', '~> 5.11.0'
|
|
pod 'Firebase/Messaging', '~> 5.11.0'
|
|
pod 'Firebase/RemoteConfig', '~> 5.11.0'
|
|
pod 'Firebase/Storage', '~> 5.11.0'
|
|
pod 'Firebase/Performance', '~> 5.11.0'
|
|
pod 'Fabric', '~> 1.7.13'
|
|
pod 'Crashlytics', '~> 3.10.9'
|
|
|
|
end
|