Skip to content

Commit 67f6035

Browse files
committed
ios: update podfile
1 parent 2fff872 commit 67f6035

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

example/ios/Podfile

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
require_relative '../node_modules/react-native/scripts/react_native_pods'
22
require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'
33

4-
platform :ios, '10.0'
4+
#platform :ios, '9.0'
55

66
target 'OneExample' do
77
config = use_native_modules!
@@ -14,5 +14,12 @@ target 'OneExample' do
1414
use_flipper!({'Flipper' => '0.87.0' , 'Flipper-Folly' => '2.5.3' , 'Flipper-RSocket' => '1.3.1' })
1515
post_install do |installer|
1616
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+
end
1722
end
23+
24+
1825
end

0 commit comments

Comments
 (0)