Reputation: 21131
As I am new to ionic - I have question about app interface refreshing. I have www folder in my ionic app. When i change content of HTML files inside this folder I am expecting that iOS and Android apps would be also changed. But this is not happening.
Maybe i need to disable cache somehow? If so - how it can be done?
Upvotes: 1
Views: 819
Reputation: 2173
You will have to build project so that contents from outer www folder will be copied to inner platform folder's www folder.
To build hit following command.
ionic build
- this will build all platformsionic build android
- this will build android platform only. Similarly for ios.
ionic serve lab
will reflect live changes. Other options
Regards.
Upvotes: 1
Reputation: 184
Set cache false in your routing state like
$stateProvider.state('loginState', {
cache: false,
url : '/url',
templateUrl : 'template.html'
})
And if you are looking for live app view change use
LiveReload
Instantly update your apps with code changes, even when running directly on your device.
$ ionic run --livereload
Upvotes: 1