From 9aa8aaa59dc5a8c1e7f0f80ee05c59f64c07ca28 Mon Sep 17 00:00:00 2001 From: Philipp Schaefer Date: Fri, 3 May 2013 01:27:57 +0200 Subject: [PATCH] updated hacking.md --- mobile/HACKING.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/mobile/HACKING.md b/mobile/HACKING.md index 76d8d54e..a3250ddb 100644 --- a/mobile/HACKING.md +++ b/mobile/HACKING.md @@ -7,6 +7,11 @@ Communication from app to script is handled by loading Javascript function calls Communication from script to app is handled by the JavascriptInterface (see /mobile/src/com/cradle/iitc\_mobile/IITC_JSInterface.java). If a method ```foo(String)``` is defined in JSInterface, it can be called by ```android.foo("Hello World")``` in the IITC script. +Developing IITC and Plugins for IITC Mobile +------------------------------------------- + +The developer mode can be enabled in the settings. Create a folder ```IITC_Mobile/dev/``` on your external storage of your Android device and copy the sources from ```$IITC_folder/build/mobile/``` to it. If the developer mode is enabled all sources will be loaded from there. + Debugging ---------