Skip to content

Commit

Permalink
fix revision number
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielZlotin committed Nov 6, 2018
1 parent aafeb93 commit f679787
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ Follow steps below in order for your React Native app to use new version of JSC
1. Add `jsc-android` to the "dependencies" section in your `package.json`:
```diff
dependencies {
+ "jsc-android": "237548.x.x",
+ "jsc-android": "236355.x.x",
```

then run `npm install` or `yarn` (depending which npm client you use) in order for the new dependency to be installed in `node_modules`
Expand Down Expand Up @@ -78,7 +78,7 @@ allprojects {

+configurations.all {
+ resolutionStrategy {
+ force 'org.webkit:android-jsc:r237548'
+ force 'org.webkit:android-jsc:r236355'
+ }
+}

Expand Down Expand Up @@ -109,7 +109,7 @@ To use this variant instead replace the third installation step with:
+ resolutionStrategy {
+ eachDependency { DependencyResolveDetails details ->
+ if (details.requested.name == 'android-jsc') {
+ details.useTarget group: details.requested.group, name: 'android-jsc-intl', version: 'r237548'
+ details.useTarget group: details.requested.group, name: 'android-jsc-intl', version: 'r236355'
+ }
+ }
+ }
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jsc-android",
"version": "237548.0.0",
"version": "236355.0.0",
"description": "Pre-build version of JavaScriptCore to be used by React Native apps",
"repository": {
"type": "git",
Expand Down

0 comments on commit f679787

Please sign in to comment.