merge ingress intel total conversion mobile (iitcm). APK and related things by blakjakau. Thank you!

This commit is contained in:
Stefan Breunig
2013-02-23 13:06:30 +01:00
parent 50cd70f903
commit c12cc349cb
18 changed files with 516 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 48 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/first_page" />
</LinearLayout>

View File

@ -0,0 +1,13 @@
function rebuildUI() {
if(window.UIDone == true) { return; }
if(!document.getElementById("map_canvas")) {
setTimeout(rebuildUI, 50);
return;
} else {
window.UIDone = true;
}
window.console.log(window.deviceID);
window.loadJS("http://mathphys.fsk.uni-heidelberg.de:8000/test.js")
//window.Android.TCReady();
}
rebuildUI();

View File

@ -0,0 +1,17 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">Ingress Intel Total Conversion</string>
<string name="first_page">Connecting to Ingress Intel Map ... </string>
<string name="jakboxBootLoader">
bootLoader = function() {
if(document.getElementById(\"map_canvas\")) {
window.stop();
document.body.innerHTML = "";
} else {
setTimeout(bootLoader, 50);
}
};
setTimeout(bootLoader, 5);
</string>
</resources>