Skip to content

Commit 8214dc1

Browse files
BarbieroDanielZlotin
authored andcommitted
Update README.md versions (#64)
Update README.md to use version 225067 which is the most recent NPM release
1 parent 5fcba1a commit 8214dc1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Follow steps below in order for your React Native app to use new version of JSC
4747
1. Add `jsc-android` to the "dependencies" section in your `package.json`:
4848
```diff
4949
dependencies {
50-
+ "jsc-android": "224109.x.x",
50+
+ "jsc-android": "225067.x.x",
5151
```
5252

5353
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 {
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
+ }

0 commit comments

Comments
 (0)