I am new to Android and I have just build my first apk file. My app is is actually a Sencha-Touch-Web-App packaged for Andoird by Sencha CMD.
Samsung user interface TouchWiz stops when I install the app on my device with adb. Which makes the device unusable. TouchWiz works back when I uninstall the app.
I don't see how my javascript code could be responsible for this error. Do you agree with me ?
Below the json file that configures the Sencha CMD packaging operation :
{
"applicationName":"TheName",
"applicationId":"com.mevena.myAppID",
"bundleSeedId":"KPXFEPZ6EF",
"versionString":"1.0-alpha",
"versionCode":"1",
"icon": {
"36":"resources/icons/icon36.png",
"48":"resources/icons/icon48.png",
"57":"resources/icons/icon72.png"
},
"inputPath":"./",
"outputPath":"../build",
"configuration":"Debug",
"platform":"Android",
"deviceType":"Universal",
"certificatePath":"./la-clef.keystore",
"certificateAlias":"la-clef",
"certificatePassword":"thePassword",
"provisionProfile":"",
"notificationConfiguration":"",
"sdkPath":"C:/Program Files (x86)/Android/android-sdk",
"androidAPILevel":"14",
"permissions":[
"INTERNET",
"ACCESS_NETWORK_STATE",
"CAMERA",
"VIBRATE",
"ACCESS_FINE_LOCATION",
"ACCESS_COARSE_LOCATION",
"CALL_PHONE"
],
"orientations": [
"portrait"
]
}
Any clue about the TouchWiz issue origin would be very helpful. Thank you.