I am using Sencha touch 2.3 with Sencha Cmd 3 and there were no problems.
I recently upgraded to Sencha Cmd 4 and created a new Sencha Touch 2.3 application.
Now I tried changing the theme by adding the following to the app.json file:
"css": [ { "path": "touch/resources/css/cupertino.css", "platform": ["chrome", "safari", "ios", "ios-classic", "android", "firefox"] "theme": "Cupertino", "update": "delta" }, ],
and I deleted the previously existing code:
{ "path": "resources/css/app.css", "update": "delta" }
This is not reflected in the application. What's wrong? This is the approach suggested by the docs. But that just doesn't happen. If I directly placed cupertino.css in the / css resource path and renamed it to app.css , it reflects. So where is app.css installed?
source share