Skip to content
This repository has been archived by the owner on Apr 23, 2024. It is now read-only.

Latest commit

 

History

History
executable file
·
14 lines (11 loc) · 996 Bytes

development.md

File metadata and controls

executable file
·
14 lines (11 loc) · 996 Bytes

Heb12 Mobile for Developers

something should go here

Setting up the Files

To run and debug Heb12 Mobile, you will need to download and install Android Studio. You can find the website over here.

First, you must download the source from Github and unzip it somewhere. The rest of the setup should be relatively simple. Launch Android Studio, Click File, Open, and open the folder that you unzipped.

Modifying

There are 2 main parts of Heb12 Mobile, one is the main bible interface, which was created in Html5. The other part, which was written in Java, loads the Html5 files into an webview and also uses a Javascript interface. This acts as a bridge between the JS and the Java code. Using the Javascript interface is pretty simple. The folling JS code would make a toast (small feedback message) from the javascript.js file:

interface.exec("toast", "Hello, World!");