merge ingress intel total conversion mobile (iitcm). APK and related things by blakjakau. Thank you!
This commit is contained in:
BIN
mobile/IngressIntelTC/res/drawable-hdpi/ic_launcher.png
Normal file
BIN
mobile/IngressIntelTC/res/drawable-hdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 48 KiB |
BIN
mobile/IngressIntelTC/res/drawable-ldpi/ic_launcher.png
Normal file
BIN
mobile/IngressIntelTC/res/drawable-ldpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 9.2 KiB |
BIN
mobile/IngressIntelTC/res/drawable-mdpi/ic_launcher.png
Normal file
BIN
mobile/IngressIntelTC/res/drawable-mdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 21 KiB |
10
mobile/IngressIntelTC/res/layout/main.xml
Normal file
10
mobile/IngressIntelTC/res/layout/main.xml
Normal 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>
|
13
mobile/IngressIntelTC/res/raw/loader.js
Normal file
13
mobile/IngressIntelTC/res/raw/loader.js
Normal 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();
|
17
mobile/IngressIntelTC/res/values/strings.xml
Normal file
17
mobile/IngressIntelTC/res/values/strings.xml
Normal 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>
|
Reference in New Issue
Block a user