# rhino-android **Repository Path**: deathsw/rhino-android ## Basic Information - **Project Name**: rhino-android - **Description**: No description available - **Primary Language**: Unknown - **License**: GPL-2.0 - **Default Branch**: develop - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-05-20 - **Last Updated**: 2021-05-20 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README [![Travis](https://img.shields.io/travis/APISENSE/rhino-android.svg)](https://travis-ci.org/APISENSE/rhino-android) [![Codecov](https://img.shields.io/codecov/c/github/APISENSE/rhino-android.svg)](https://codecov.io/gh/APISENSE/rhino-android) [![Maven Central](https://img.shields.io/maven-central/v/io.apisense/rhino-android.svg)](http://search.maven.org/#artifactdetails%7Cio.apisense%7Crhino-android%7C1.0%7Cjar) # 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.5' } ``` ## Usage You can now call the Rhino script engine by using the jsr223, i.e.: ``` ScriptEngine engine = new ScriptEngineManager().getEngineByName("rhino"); ```