Skip to content

Commit 091630a

Browse files
committed
update README to new version instructions
1 parent 32f1db7 commit 091630a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Follow steps below in order for your React Native app to use new version of JSC
4242
1. Add `jsc-android` to the "dependencies" section in your `package.json`:
4343
```diff
4444
dependencies {
45-
+ "jsc-android": "^216113.0.0",
45+
+ "jsc-android": "224109.x.x",
4646
```
4747

4848
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 {
5959
}
6060
+ maven {
6161
+ // 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"
6363
+ }
6464
}
6565
}
@@ -72,7 +72,7 @@ allprojects {
7272

7373
+configurations.all {
7474
+ resolutionStrategy {
75-
+ force 'org.webkit:android-jsc:r216113'
75+
+ force 'org.webkit:android-jsc:r224109'
7676
+ }
7777
+}
7878

0 commit comments

Comments
 (0)