To clear Browser local storage for current Sencha Touch 2 app you can execute in your code the following javascript:
1 |
window.localStorage.clear() |






The new versions of Chrome allow you to test your Mobile HTML App simulating device screen. This is particularly useful considering the reduced screen size of mobile phones compared to what is available on your chrome browser running on your desktop screen.
Console Emulation is available from Chrome Developer Tools, and can be activated from setting panel:
You will be able then to locate the Emulation Panel and select the preferred device from the option available getting the screen emulation for the device selected:
Some Sencha Touch 2 and or Phonegap built App may suffer from this error at startup, depending on the amount of scripts loaded, the startup loop time, the performance of the current device or emulator, the lack of a splash screen.
Connection to server was unsuccessful. (file:///android_asset/www/index.html)
As workaround to fix the error you can adopt the following approach:
1 2 3 4 5 6 7 8 9 10 |
<!doctype html> <html> <head> <title>tittle</title> <script> window.location='./main.html'; </script> <body> </body> </html> |
First of all make sure you have downloaded and istalled proper Sencha Touch 2 archive you can download from:
http://www.sencha.com/products/touch/download/
Ensure you have also installed the Sencha CMD you can download at:
http://www.sencha.com/products/sencha-cmd/download
Install the CMD archive downloaded and copy the Sencha Touch 2 archive to your htdocs folder of your AMP installation.
Enter the sencha directory in your htdocs folder and create your first app with the command:
1 |
Sencha generate app yourApp ../folderApps/yourApp |
to build your app you can enter the yourApp folder and type the following command:
1 2 |
cd ../folderApps/yourApp sencha app build package |
You can also launch your new App directly in the simulator with the following command:
1 |
sencha app build -run native |