Skip to content
This repository has been archived by the owner on Mar 25, 2019. It is now read-only.

AndroidJSCore-2.2-pre1

Pre-release
Pre-release
Compare
Choose a tag to compare
@ericwlange ericwlange released this 01 May 03:37
· 59 commits to master since this release

This is a pre-release of AndroidJSCore-2.2. It may still have some issues, but it would be great if you could start testing it in your apps. Added in this release:

  • Stability fixes and memory leak plugs -- please help me test if this fixes the hanging problems
  • JIT on ARM. Just-in-time compilation now works on all non-MIPS processors
  • Compiles against API 9 (Gingerbread) for greater legacy support

To use, simply download AndroidJSCore-2.2-pre1-release.aar, drop it into your project somewhere (e.g. libs/), and add the following to your app's build.gradle:

repositories {
    flatDir {
        dirs 'libs'
    }
}

dependencies {
    compile(name:'AndroidJSCore-2.2-pre1-release', ext:'aar')
}

Please see the Javadocs for detailed API documentation.

Once 2.2 is fully tested and debugged, I will add it to a remote repository, simplifying the process further.