You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: build with ndk r27b on top of webkitgtk 2.26.4 (#184)
# Why
to support android 16k page sizes and react-native 0.77
# How
- migrate webkit repo from svn to git
- update to webkitgtk 2.26.4 (previous we had 2.26.1). the main reason is that git repo don't have 2.26.1 tag but 2.26 branch.
- change the version scheme. originally we use svn revision, but webkit team don't have revision anymore. the new version scheme will base on webkitgtk version.
```sh
$ echo "2.26.4" | awk -F. '{printf "%d%03d%03d\n", $1, $2, $3}'
2026004
```
- update ci, lib builder, and test projects
- use ndk r27b
- bump minSdkVersion to 24
- add `-Wl,-z,max-page-size=16384` linker flags
-[Info about Webkit Revisions](https://trac.webkit.org/browser/webkit/releases/WebKitGTK)
241
241
-[Info about JSC version used on iOS](https://trac.webkit.org/browser/webkit/releases/WebKitGTK/webkit-2.18.2/Source/WebCore/Configurations/Version.xcconfig)
0 commit comments