Skip to content

Commit f679787

Browse files
committed
fix revision number
1 parent aafeb93 commit f679787

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Follow steps below in order for your React Native app to use new version of JSC
4848
1. Add `jsc-android` to the "dependencies" section in your `package.json`:
4949
```diff
5050
dependencies {
51-
+ "jsc-android": "237548.x.x",
51+
+ "jsc-android": "236355.x.x",
5252
```
5353

5454
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 {
7878

7979
+configurations.all {
8080
+ resolutionStrategy {
81-
+ force 'org.webkit:android-jsc:r237548'
81+
+ force 'org.webkit:android-jsc:r236355'
8282
+ }
8383
+}
8484

@@ -109,7 +109,7 @@ To use this variant instead replace the third installation step with:
109109
+ resolutionStrategy {
110110
+ eachDependency { DependencyResolveDetails details ->
111111
+ 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'
113113
+ }
114114
+ }
115115
+ }

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jsc-android",
3-
"version": "237548.0.0",
3+
"version": "236355.0.0",
44
"description": "Pre-build version of JavaScriptCore to be used by React Native apps",
55
"repository": {
66
"type": "git",

0 commit comments

Comments
 (0)