https://github.com/brionmario/rhino-library-android
:rhinoceros: An example implementation of the Rhino open-source JavaScript engine in an Android application.
https://github.com/brionmario/rhino-library-android
android library rhino-javascript-engine
Last synced: about 1 year ago
JSON representation
:rhinoceros: An example implementation of the Rhino open-source JavaScript engine in an Android application.
- Host: GitHub
- URL: https://github.com/brionmario/rhino-library-android
- Owner: brionmario
- Created: 2017-03-18T07:23:38.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2018-01-06T13:41:30.000Z (over 8 years ago)
- Last Synced: 2025-03-29T09:05:36.889Z (about 1 year ago)
- Topics: android, library, rhino-javascript-engine
- Language: Java
- Homepage:
- Size: 188 KB
- Stars: 15
- Watchers: 1
- Forks: 2
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
MOZILLA RHINO - JavaScript Engine
Android Studio Tutorial
Rhino is an open-source implementation of JavaScript written entirely in Java. It is typically embedded into Java applications to provide scripting to end users. It is embedded in J2SE 6 as the default Java scripting engine.
Follow my blog Post - http://brionmario.com/mozilla-rhino-javascript-engine/
Download the latest version - https://mvnrepository.com/artifact/org.mozilla/rhino
Visit their GitHub repository - https://github.com/mozilla/rhino
In this brief tutorial, I have created a basic activity which accepts an arithmetic expression and once you click the
"FIND ANSWER" button, the anwer will be generated using the RHINO JavaScript engine.
NOTE
Put this in the Module Dependencies - compile 'org.mozilla:rhino:1.7R4'
SCREENSHOTS OF THE USER INTERFACE
P:S - The credits belong to the original developers. I'm simply using the library here :D