Skip to content

Commit 30f6dfa

Browse files
committed
RN62
1 parent 1689c98 commit 30f6dfa

File tree

5 files changed

+12
-7
lines changed

5 files changed

+12
-7
lines changed

detox/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
"jest": "25.1.x",
3535
"mockdate": "^2.0.1",
3636
"prettier": "1.7.0",
37-
"react-native": "0.60.x",
37+
"react-native": "0.62.x",
3838
"wtfnode": "^0.8.0"
3939
},
4040
"dependencies": {

detox/test/ios/Podfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ def rn_pods
2727
pod 'React-jsi', :path => '../node_modules/react-native/ReactCommon/jsi'
2828
pod 'React-jsiexecutor', :path => '../node_modules/react-native/ReactCommon/jsiexecutor'
2929
pod 'React-jsinspector', :path => '../node_modules/react-native/ReactCommon/jsinspector'
30-
pod 'ReactCommon/jscallinvoker', :path => "../node_modules/react-native/ReactCommon"
30+
pod 'ReactCommon/callinvoker', :path => "../node_modules/react-native/ReactCommon"
3131
pod 'ReactCommon/turbomodule/core', :path => "../node_modules/react-native/ReactCommon"
32-
pod 'Yoga', :path => '../node_modules/react-native/ReactCommon/yoga'
32+
pod 'Yoga', :path => '../node_modules/react-native/ReactCommon/yoga', :modular_headers => true
3333

3434
pod 'DoubleConversion', :podspec => '../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec'
3535
pod 'glog', :podspec => '../node_modules/react-native/third-party-podspecs/glog.podspec'

detox/test/ios/example/AppDelegate.m

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,11 @@ - (void)sendShakeEvent
8686
[self sendEventWithName:@"ShakeEvent" body:nil];
8787
}
8888

89+
+ (BOOL)requiresMainQueueSetup
90+
{
91+
return YES;
92+
}
93+
8994
@end
9095

9196
@interface ShakeDetectViewController : UIViewController

detox/test/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@
3131
},
3232
"dependencies": {
3333
"moment": "^2.24.0",
34-
"react": "16.9.0",
35-
"react-native": "0.61.4"
34+
"react": "16.11.x",
35+
"react-native": "0.62.x"
3636
},
3737
"devDependencies": {
3838
"@babel/core": "^7.4.5",

examples/demo-react-native/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
"e2e:android-release": "npm run build:android-release && npm run test:android-release"
2020
},
2121
"dependencies": {
22-
"react": "16.9.0",
23-
"react-native": "0.61.4"
22+
"react": "16.11.x",
23+
"react-native": "0.62.x"
2424
},
2525
"devDependencies": {
2626
"detox": "^16.2.0",

0 commit comments

Comments
 (0)