[SenchaTouch] unknown chromium error : -6 해결법.
Sencha Touch 2.X 버전에서는 ICS버그가 많다.Sencha Touch 2.X has a lot of bugs with ICS.그중 하나가 unknown chromium error 6 인데, 아래의 대응코드를 넣으면 해결된다.One of them issue is unknown chromium error 6, you can solve below code.1.if(Ext.os.is.Android) { Ext.Loader.setConfig({ disableCaching: false }); } 2.그리고 App.js, launch 에 다음을 추가해준다.and add code to App.js, launch.Ext.Ajax.setDisableCaching(false); 이렇게 하면 ICS에서 구동이 가..