I have been using Sencha touch 2.3 with Sencha Cmd 3 and there has been no issues.
I recently upgraded to Sencha Cmd 4 and generated a new Sencha Touch 2.3 app.
Now, I tried to change the theme by adding the following in 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 removed the previously existing code:
{
"path": "resources/css/app.css",
"update": "delta"
}
This is not reflecting in the app. What is wrong ? This is the approach that is suggested by the docs. But it is just not happening. If i directly place the cupertino.css in the resources/css path and rename it to app.css, it reflects. So where is the app.css being set?