File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ Follow steps below in order for your React Native app to use new version of JSC
47
47
1 . Add ` jsc-android ` to the "dependencies" section in your ` package.json ` :
48
48
``` diff
49
49
dependencies {
50
- + "jsc-android": "224109 .x.x",
50
+ + "jsc-android": "225067 .x.x",
51
51
```
52
52
53
53
then run ` npm install ` or ` yarn ` (depending which npm client you use) in order for the new dependency to be installed in ` node_modules `
@@ -77,7 +77,7 @@ allprojects {
77
77
78
78
+ configurations.all {
79
79
+ resolutionStrategy {
80
- + force 'org.webkit:android-jsc:r224109 '
80
+ + force 'org.webkit:android-jsc:r225067 '
81
81
+ }
82
82
+ }
83
83
@@ -108,7 +108,7 @@ To use this variant instead replace the third installation step with:
108
108
+ resolutionStrategy {
109
109
+ eachDependency { DependencyResolveDetails details ->
110
110
+ if (details.requested.name == 'android-jsc') {
111
- + details.useTarget group: details.requested.group, name: 'android-jsc-intl', version: 'r224109 '
111
+ + details.useTarget group: details.requested.group, name: 'android-jsc-intl', version: 'r225067 '
112
112
+ }
113
113
+ }
114
114
+ }
You can’t perform that action at this time.
0 commit comments