Skip to content

Commit c9cdc0b

Browse files
Kudokmagiera
authored andcommitted
Upgrade WebKitGTK+ to 2.22.6 (#86)
Closes #85 For security vulnerabilities: https://webkitgtk.org/security/WSA-2018-0009.html Tested on my arm device with RNTester okay. I don't have a Pixel phone and cannot update measurement result as these result are from Pixel phone.
1 parent 3d43c64 commit c9cdc0b

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
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": "236355.x.x",
51+
+ "jsc-android": "241213.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:r236355'
81+
+ force 'org.webkit:android-jsc:r241213'
8282
+ }
8383
+}
8484

@@ -98,7 +98,7 @@ To use this variant instead replace the third installation step with:
9898
+ resolutionStrategy {
9999
+ eachDependency { DependencyResolveDetails details ->
100100
+ if (details.requested.name == 'android-jsc') {
101-
+ details.useTarget group: details.requested.group, name: 'android-jsc-intl', version: 'r236355'
101+
+ details.useTarget group: details.requested.group, name: 'android-jsc-intl', version: 'r241213'
102102
+ }
103103
+ }
104104
+ }

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jsc-android",
3-
"version": "236355.1.1",
3+
"version": "241213.0.0",
44
"description": "Pre-build version of JavaScriptCore to be used by React Native apps",
55
"repository": {
66
"type": "git",
@@ -26,7 +26,7 @@
2626
"start": "./scripts/start.sh"
2727
},
2828
"config": {
29-
"webkitGTK": "2.22.2",
29+
"webkitGTK": "2.22.6",
3030
"chromiumICUCommit": "b34251f8b762f8e2112a89c587855ca4297fed96"
3131
}
3232
}

0 commit comments

Comments
 (0)