-
21 Jun 2012 7:27 AM #1
ST2 apps totally not working with Android 4.0.3
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
-
21 Jun 2012 8:00 AM #2Sencha - Senior Forum Manager
- Join Date
- Mar 2007
- Location
- St. Louis, MO
- Posts
- 34,128
- Vote Rating
- 453
The KitchenSink in the native browser and chrome for android work as we support 4.0.3
Mitchell Simoens @SenchaMitch
Sencha Inc, Senior Forum Manager
________________
http://www.JSONPLint.com - Source to lint your JSONP!
Check out my GitHub, lots of nice things for Ext JS 4 and Sencha Touch 2
https://github.com/mitchellsimoens
Think my support is good? Get more personalized support via a support subscription. https://www.sencha.com/store/
Need more help with your app? Hire Sencha Services services@sencha.com
Want to learn Sencha Touch 2? Check out Sencha Touch in Action that is almost in print!
When posting code, please use BBCode's CODE tags.
-
21 Jun 2012 8:05 AM #3
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);
}
-
21 Jun 2012 2:27 PM #4
try with a error at load logger
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
-
24 Jun 2012 5:06 AM #5
I have tried to start ST2 apps with logcat attached but I did not get any particular error...
Touch events just do not work.
Thank you for reporting this bug. We will make it our priority to review this report.


Reply With Quote