File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ Follow steps below in order for your React Native app to use new version of JSC
48
48
1 . Add ` jsc-android ` to the "dependencies" section in your ` package.json ` :
49
49
``` diff
50
50
dependencies {
51
- + "jsc-android": "237548 .x.x",
51
+ + "jsc-android": "236355 .x.x",
52
52
```
53
53
54
54
then run ` npm install ` or ` yarn ` (depending which npm client you use) in order for the new dependency to be installed in ` node_modules `
@@ -78,7 +78,7 @@ allprojects {
78
78
79
79
+ configurations.all {
80
80
+ resolutionStrategy {
81
- + force 'org.webkit:android-jsc:r237548 '
81
+ + force 'org.webkit:android-jsc:r236355 '
82
82
+ }
83
83
+ }
84
84
@@ -109,7 +109,7 @@ To use this variant instead replace the third installation step with:
109
109
+ resolutionStrategy {
110
110
+ eachDependency { DependencyResolveDetails details ->
111
111
+ if (details.requested.name == 'android-jsc') {
112
- + details.useTarget group: details.requested.group, name: 'android-jsc-intl', version: 'r237548 '
112
+ + details.useTarget group: details.requested.group, name: 'android-jsc-intl', version: 'r236355 '
113
113
+ }
114
114
+ }
115
115
+ }
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " jsc-android" ,
3
- "version" : " 237548 .0.0" ,
3
+ "version" : " 236355 .0.0" ,
4
4
"description" : " Pre-build version of JavaScriptCore to be used by React Native apps" ,
5
5
"repository" : {
6
6
"type" : " git" ,
You can’t perform that action at this time.
0 commit comments