I have Ionic Appflow Live Updates configured and deploying correctly (in a Capacitor project). The problem is that when I deploy manually the app to my phone in order to do some development tests, it logically keeps updating to the latest Appflow deployment. I'd like to disable Live Updates temporarily, in order to be able to test a new version in my phone, without being it updated. Is this possible?
Asked
Active
Viewed 445 times
1 Answers
1
There is a way to configure your app to disable updates: in capacitor.config.json
file add the following to the cordova.preferences
object:
{
...
},
"cordova": {
"preferences": {
"DisableDeploy": "true"
}
}
}
This should stop auto updating your test app. Remember to revert it to false before commiting the project for Appflow deployment.
Read the Documentation.

Guscie
- 2,278
- 2
- 26
- 33