/rhino-android

Give access to RhinoScriptEngine from the JSR223 interfaces on Android JRE.

Primary LanguageJavaGNU General Public License v2.0GPL-2.0

Travis Codecov

Rhino script engine

This project aims to package a minimal Rhino script engine for Android.

The script engine source code is imported from openjdk implementation, version 7u40-b43.

Installation

Add the following repository and dependency to your build.gradle:

dependencies {
    implementation 'com.github.gedoor:rhino-android:1.8'
}

Usage

You can now call the Rhino script engine by using the jsr223, i.e.:

ScriptEngine engine = new ScriptEngineManager().getEngineByName("rhino");