mirror of
https://github.com/status-im/status-mobile.git
synced 2025-01-10 08:45:58 +00:00
d8a641d483
- Correctly parameterized PRODUCT_BUNDLE_IDENTIFIER - Automatically set architecture based on hardware available - Update iOS deployment target to 8.0 (minimal deployment target for latest Xcode) - Enable recommended warnings (infinite recursion, etc) - Enable Testability for debug configuration Podfile updated to version 8.0 target, as this is assumed by default with this warning: "[!] Automatically assigning platform ios with version 8.0 on target StatusIm because no platform was specified. Please specify a platform for this target in your Podfile. See `https://guides.cocoapods.org/syntax/podfile.html#platform`."
27 lines
785 B
Ruby
27 lines
785 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
|
|
platform :ios, '8.0'
|
|
# 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
|