Skip to content

Upgrade WebKitGTK+ to 2.22.6 #86

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 27, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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": "236355.x.x",
+ "jsc-android": "241213.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:r236355'
+ force 'org.webkit:android-jsc:r241213'
+ }
+}

Expand All @@ -98,7 +98,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: 'r236355'
+ details.useTarget group: details.requested.group, name: 'android-jsc-intl', version: 'r241213'
+ }
+ }
+ }
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jsc-android",
"version": "236355.1.1",
"version": "241213.0.0",
"description": "Pre-build version of JavaScriptCore to be used by React Native apps",
"repository": {
"type": "git",
Expand All @@ -26,7 +26,7 @@
"start": "./scripts/start.sh"
},
"config": {
"webkitGTK": "2.22.2",
"webkitGTK": "2.22.6",
"chromiumICUCommit": "b34251f8b762f8e2112a89c587855ca4297fed96"
}
}