File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 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
47471 . Add ` jsc-android ` to the "dependencies" section in your ` package.json ` :
4848``` diff
4949dependencies {
50- + "jsc-android": "224109 .x.x",
50+ + "jsc-android": "225067 .x.x",
5151```
5252
5353then 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 {
7777
7878+ configurations.all {
7979+ resolutionStrategy {
80- + force 'org.webkit:android-jsc:r224109 '
80+ + force 'org.webkit:android-jsc:r225067 '
8181+ }
8282+ }
8383
@@ -108,7 +108,7 @@ To use this variant instead replace the third installation step with:
108108+ resolutionStrategy {
109109+ eachDependency { DependencyResolveDetails details ->
110110+ 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 '
112112+ }
113113+ }
114114+ }
You can’t perform that action at this time.
0 commit comments