We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2fff872 commit 67f6035Copy full SHA for 67f6035
example/ios/Podfile
@@ -1,7 +1,7 @@
1
require_relative '../node_modules/react-native/scripts/react_native_pods'
2
require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'
3
4
-platform :ios, '10.0'
+#platform :ios, '9.0'
5
6
target 'OneExample' do
7
config = use_native_modules!
@@ -14,5 +14,12 @@ target 'OneExample' do
14
use_flipper!({'Flipper' => '0.87.0' , 'Flipper-Folly' => '2.5.3' , 'Flipper-RSocket' => '1.3.1' })
15
post_install do |installer|
16
flipper_post_install(installer)
17
+ installer.pods_project.targets.each do |target|
18
+ target.build_configurations.each do |config|
19
+ config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '9.0'
20
+ end
21
22
end
23
+
24
25
0 commit comments