mirror of
https://github.com/status-im/status-react.git
synced 2025-01-09 18:46:19 +00:00
e169949e0a
- Print FCMToken which can be used to send PNs from Firebase Console - Include react-native-fcm and related packages - Update capabilities for iOS - google service config files for Android and iOS
26 lines
762 B
Ruby
26 lines
762 B
Ruby
# Uncomment the next line to define a global platform for your project
|
|
# platform :ios, '9.0'
|
|
|
|
# Need to explicitly declare this avoid downgrade
|
|
# https://github.com/evollu/react-native-fcm/issues/420
|
|
pod 'Firebase/Core', '4.0.0'
|
|
|
|
# react-native-fcm should support FB 4, but latest breaks builds, hence older version
|
|
# TODO(oskarth): Awaiting RN 0.47 upgrade, and/or PN working on iOS device before deciding which version to use
|
|
pod 'Firebase/Messaging'
|
|
#pod 'Firebase/Messaging', '3.17.0'
|
|
|
|
target 'StatusIm' do
|
|
# Uncomment the next line if you're using Swift or would like to use dynamic frameworks
|
|
# use_frameworks!
|
|
|
|
# Pods for StatusIm
|
|
pod 'Instabug', '~> 7.0'
|
|
|
|
target 'StatusImTests' do
|
|
inherit! :search_paths
|
|
# Pods for testing
|
|
end
|
|
|
|
end
|