Thank you for reporting this bug. We will make it our priority to review this report.
-
Sencha User
ST2 apps totally not working with Android 4.0.3
Hi everybody,I am working on a ST 2.0.0 +Phonegap app which works perfectly on android 2.3 and I tried it on a Android ICS 4.0.3 tablet but the buttons do not work (so I cannot get past the login screen).
I tried also the kitchen sink demo on the Sencha website (inside browser, without PhoneGap) but it does not work too, it shows the UI but it is not responsive to touch events (no way to click on the list items), just like my app.
It seems that touch events are not delivered or something like that.
Is this a known bug? Are there any workarounds?
Thanks in advance,
Massimo
-
The KitchenSink in the native browser and chrome for android work as we support 4.0.3
-
Sencha Premium Member
Usually this is linked to networking issues concerning android >=3.0.
There is this horrible bug :
- http://code.google.com/p/android/issues/detail?id=17535
You must disable sencha cache & avoid GET/POST request with query params :
// Android >= 3.0
if(Ext.os.is.Android && Ext.os.version.major >= 3) {
Ext.Loader.setConfig({disableCaching: false});
Ext.Ajax.setDisableCaching(false);
}
-
Sencha User
try with a error at load logger
Hello, my tablet I had no problem with my Android 4.0.3, may be an error quee an error there to build applications, since one can not load a logger
-
Sencha User
I have tried to start ST2 apps with logcat attached but I did not get any particular error...
Touch events just do not work.