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 @@ -42,7 +42,7 @@ Follow steps below in order for your React Native app to use new version of JSC
42
42
1 . Add ` jsc-android ` to the "dependencies" section in your ` package.json ` :
43
43
``` diff
44
44
dependencies {
45
- + "jsc-android": "^216113.0.0 ",
45
+ + "jsc-android": "224109.x.x ",
46
46
```
47
47
48
48
then run ` npm install ` or ` yarn ` (depending which npm client you use) in order for the new dependency to be installed in ` node_modules `
@@ -59,7 +59,7 @@ allprojects {
59
59
}
60
60
+ maven {
61
61
+ // Local Maven repo containing AARs with JSC library built for Android
62
- + url "$rootDir/../node_modules/jsc-android/android "
62
+ + url "$rootDir/../node_modules/jsc-android/dist "
63
63
+ }
64
64
}
65
65
}
@@ -72,7 +72,7 @@ allprojects {
72
72
73
73
+ configurations.all {
74
74
+ resolutionStrategy {
75
- + force 'org.webkit:android-jsc:r216113 '
75
+ + force 'org.webkit:android-jsc:r224109 '
76
76
+ }
77
77
+ }
78
78
You can’t perform that action at this time.
0 commit comments