본문 바로가기

Programming/Hybrid App

[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에서 구동이 가능하다.

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.

http://fimtrus.tistory.com/30


외국인을 위한 친절한 번역 서비스. 문법이 맞는지는 모름.