How to disable Appflow Live Updates in IONIC app

620 Views Asked by At

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?

1

There are 1 best solutions below

0
On

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.