yahoo/jsc-android-buildscripts

Name: jsc-android-buildscripts

Owner: Yahoo Inc.

Description: Script for building JavaScriptCore for Android (for React Native but not only)

Forked from: SoftwareMansion/jsc-android-buildscripts

Created: 2017-08-22 19:07:38.0

Updated: 2018-05-24 11:37:50.0

Pushed: 2017-08-02 14:49:42.0

Homepage:

Size: 109

Language: Shell

GitHub Committers

UserMost Recent Commit# Commits

Other Committers

UserEmailMost Recent Commit# Commits

README

JSC build scripts for Android

The aim of this project is to provide maintainable build scripts for the JavaScriptCore JavaScript engine and allow the React Native community to incorporate up-to-date releases of JSC into the framework on Android.

This project is based on facebook/android-jsc but instead of rewriting JSC's build scripts into BUCK files, it relies on CMake build scripts maintained in a GTK branch of WebKit maintained by the WebKitGTK team (great work btw!). Thanks to that, with just a small amount of work we should be able to build not only current but also future releases of JSC. An obvious benefit for everyone using React Native is that this will allow us to update JSC for React Native on Android much more often than before (note that facebook/android-jsc uses JSC version from Nov 2014), which is especially helpful since React Native on iOS uses the built-in copy of JSC that is updated with each major iOS release (see this as a reference).

Requirements

There is a huge list of requirements that need to be installed on your system in order to be able to cross-compile JSC for Android. To simplify the process of setting up the environment we provide a Docker image that comes with everything you will need. If you decide to use our Docker image, the only thing you need to do is to prefix each command with this:

er run -v `pwd`:/bitrise/src --rm swmansion/jsc-android-buildscripts
Example:
er run -v `pwd`:/bitrise/src --rm swmansion/jsc-android-buildscripts ./fetch_sources.sh
Don't want to use Docker

As mentioned the list of dependencies is huge, we tried to list everything that is needed below:

Build instructions

IMPORTANT: Remember to prefix each command with the appropriate Docker command given above when using our Docker image

  1. git clone https://github.com/SoftwareMansion/jsc-android-buildscripts.git .
  2. ./fetch_sources.sh
  3. ./icu-prep.sh
  4. ./jsc-prep.sh
  5. ./all.sh
  6. ./gradlew lib:installArchives libIntl:installArchives (add -w /bitrise/src/lib to docker run args)

The Maven repo containing the android-jsc AAR will be available at ./lib/android.

Distribution

JSC library built using this project is distributed over npm: npm/jsc-android. The library is packaged as a local Maven repository containing AAR files that include the binaries. Please refer to the section below in order to learn how your app can consume this format.

How to use it with my React Native app

Follow steps below in order for your React Native app to use new version of JSC VM on android:

  1. Add jsc-android to the “dependencies” section in your package.json:
    ndencies {
    
  2. “jsc-android”: “^216113.0.0”,

then run npm install or yarn (depending which npm client you use) in order for the new dependency to be installed in node_modules

  1. Modify andorid/build.gradle file to add new local maven repository packaged in the jsc-android package to the search path:

    rojects {
    sitories {
    mavenLocal()
    jcenter()
    maven {
        // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
        url "$rootDir/../node_modules/react-native/android"
    }
    
  2.   maven {
    
  3.       // Local Maven repo containing AARs with JSC library built for Android
    
  4.       url "$rootDir/../node_modules/jsc-android/android"
    
  5.   }
    

    } }

  6. Update your app's build.gradle file located in android/app/build.gradle to force app builds to use new version of the JSC library as opposed to the version specified in react-native gradle module as a dependency:



figurations.all {
 resolutionStrategy {
     force 'org.webkit:android-jsc:r216113'
 }


ndencies {
compile fileTree(dir: "libs", include: ["*.jar"])
  1. You're done, rebuild your app and enjoy updated version of JSC on android!
Testing

As a part of this project we provide a patch to the React Native source code that allows for measuring a React Native application's cold-start. The methodology behind this test is to modify the part of the code that is responsible for loading JS bundles into the JS VM such that we measure and store the execution time, and to modify the process of instantiating the bridge so we can run it multiple times. To learn more about how the perf tests work and how to perform them, refer to this document. Results for the Samsung Galaxy S4 are presented below, cold start has been measured on rather large React Native app with minified bundle of size at around 3M:

| | android-jsc (r174650) | new JSC (r216113) | | ——————– |———————-:| —————–:| | cold start time | 2530 ms | 2150 ms (-15%) | | binary size (armv7) | 1.8 MiB | 4.3 MiB | | binary size (x86) | 4.4 MiB | 7.4 MiB | | binary size (arm64) | N/A | 6.5 MiB | | binary size (x86_64) | N/A | 7.2 MiB |

International variant

Starting with 216113.0.0 version, we provide two build variants which differ in i18n support.

Default variant

By default we ship with no international support. Methods like Date.toLocaleString will act as Date.toString. String.localeCompare will just compare each character's byte value.

International variant

International variant includes ICU i18n library and necessary data allowing to use e.g. Date.toLocaleString and String.localeCompare that give correct results when using with locales other than en-US. Note that this variant is about 6MiB larger per architecture than default.

To use this variant instead replace patch from the third installation step with:



figurations.all {
 resolutionStrategy {
     eachDependency { DependencyResolveDetails details ->
         if (details.requested.name == 'android-jsc') {
             details.useTarget group: details.requested.group, name: 'android-jsc-intl', version: 'r216113'
         }
     }
 }


ndencies {
compile fileTree(dir: "libs", include: ["*.jar"])

Note that using variant with i18n support will have some significant impact on the binary size as the ICU library will need to be distributed along with ICU-data library which contains data helpful with localizing numbers/dates/collation/etc for all possible locales. Here is the summary of all the libraries sizes (including JSC) when using i18n variant.

| | new JSC intl variant (r216113) | | ——————– |——————————-:| | binary size (armv7) | 11.2 MiB | | binary size (x86) | 15.6 MiB | | binary size (arm64) | 14.4 MiB | | binary size (x86_64) | 15.2 MiB |

Credits

This project has been built in cooperation between Expo.io and Software Mansion

expo swm


This work is supported by the National Institutes of Health's National Center for Advancing Translational Sciences, Grant Number U24TR002306. This work is solely the responsibility of the creators and does not necessarily represent the official views of the National Institutes of Health.