File tree Expand file tree Collapse file tree 3 files changed +16
-9
lines changed
packages/create-react-native-library/templates
native-common/ios/{%- project.name %}.xcodeproj Expand file tree Collapse file tree 3 files changed +16
-9
lines changed Original file line number Diff line number Diff line change 50
50
"@commitlint/config-conventional" : " ^11.0.0" ,
51
51
"@react-native-community/eslint-config" : " ^2.0.0" ,
52
52
"@release-it/conventional-changelog" : " ^2.0.0" ,
53
- "@types/jest" : " ^26 .0.0 " ,
54
- "@types/react" : " ^16.9.19 " ,
55
- "@types/react-native" : " 0.62.13 " ,
53
+ "@types/jest" : " ^27 .0.3 " ,
54
+ "@types/react" : " ^17.0.37 " ,
55
+ "@types/react-native" : " 0.66.8 " ,
56
56
"commitlint" : " ^11.0.0" ,
57
- "eslint" : " ^7.2.0 " ,
57
+ "eslint" : " ^8.4.1 " ,
58
58
"eslint-config-prettier" : " ^7.0.0" ,
59
59
"eslint-plugin-prettier" : " ^3.1.3" ,
60
60
"husky" : " ^6.0.0" ,
61
- "jest" : " ^26.0.1 " ,
61
+ "jest" : " ^27.4.3 " ,
62
62
"pod-install" : " ^0.1.0" ,
63
63
"prettier" : " ^2.0.5" ,
64
- "react" : " 16.13.1 " ,
65
- "react-native" : " 0.64.0 " ,
64
+ "react" : " 17.0.2 " ,
65
+ "react-native" : " 0.66.3 " ,
66
66
"react-native-builder-bob" : " ^<%- bob.version %>" ,
67
67
"release-it" : " ^14.2.2" ,
68
68
"typescript" : " ^4.5.2"
Original file line number Diff line number Diff line change 1
1
require_relative '../node_modules/react-native/scripts/react_native_pods'
2
2
require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'
3
3
4
- platform :ios , '10 .0'
4
+ platform :ios , '11 .0'
5
5
6
6
target '<%- project.name %>Example' do
7
7
config = use_native_modules!
@@ -16,8 +16,13 @@ target '<%- project.name %>Example' do
16
16
#
17
17
# Note that if you have use_frameworks! enabled, Flipper will not work and
18
18
# you should disable these next few lines.
19
- use_flipper!({ 'Flipper' => '0.80.0 ' })
19
+ use_flipper!({ 'Flipper' => '0.125.0', 'Flipper-Folly' => '~> 2.6', 'Flipper-RSocket' => '~> 1.4 ' })
20
20
post_install do |installer|
21
+ installer.pods_project.targets.each do |target|
22
+ target.build_configurations.each do |config|
23
+ config.build_settings["ONLY_ACTIVE_ARCH"] = "NO"
24
+ end
25
+ end
21
26
flipper_post_install(installer)
22
27
end
23
28
end
Original file line number Diff line number Diff line change 184
184
COPY_PHASE_STRIP = NO;
185
185
ENABLE_STRICT_OBJC_MSGSEND = YES;
186
186
ENABLE_TESTABILITY = YES;
187
+ "EXCLUDED_ARCHS[sdk=*]" = arm64;
187
188
GCC_C_LANGUAGE_STANDARD = gnu99;
188
189
GCC_DYNAMIC_NO_PIC = NO;
189
190
GCC_NO_COMMON_BLOCKS = YES;
234
235
COPY_PHASE_STRIP = YES;
235
236
ENABLE_NS_ASSERTIONS = NO;
236
237
ENABLE_STRICT_OBJC_MSGSEND = YES;
238
+ "EXCLUDED_ARCHS[sdk=*]" = arm64;
237
239
GCC_C_LANGUAGE_STANDARD = gnu99;
238
240
GCC_NO_COMMON_BLOCKS = YES;
239
241
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
You can’t perform that action at this time.
0 commit comments