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에서 구동이 가능하다.
You can run Application with ICS.
하지만 LocalStorage가 삭제되는 버그가 있는데
but this one has bug which localstorage deleted.
아래의 링크를 참조하기 바란다.
if you want to solve this bug, see below link.
외국인을 위한 친절한 번역 서비스. 문법이 맞는지는 모름.
'Programming > Hybrid App' 카테고리의 다른 글
[Javascript] 숫자 금액 표시 세자리 콤마 (0) | 2013.05.10 |
---|---|
[SenchaTouch] Ext.tab.Panel (tabpanel) 에서 애니메이션 제거하기. (0) | 2013.02.24 |
[SenchaTouch] Sencha Touch 2.X 에서 LocalStorage 삭제되는 버그 (0) | 2013.02.20 |
[SenchaTouch] Html 에서 상위 뷰로 이벤트 전달하지 않는 방법. (0) | 2013.01.16 |
[Javascript] 이미지 실제 사이즈 구하기. (0) | 2012.12.10 |