-
|
For example getBundle() became fetchLatestBundle(). And I've been using the enabled property in the capacitor.config.ts for LiveUpdate to turn it off when doing development, but I see that enabled is no longer a valid config item? How do I turn off liveupdate for local development? Are there other things that I'm likely to run into that changed between 6 and 7? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
|
Wait... DID getBundle() become fetchLatestBundle()??? Because fetchLatestBundle has been around since 5.x. So, what happened to getBundle()? |
Beta Was this translation helpful? Give feedback.
-
|
Yes, you can find all breaking changes here. Regarding the "enabled" configuration option: this configuration option just disabled the rollback timeout. You can just set the "readyTimeout" configuration option to undefined to have the same behavior. |
Beta Was this translation helpful? Give feedback.
Yes, you can find all breaking changes here.
Regarding the "enabled" configuration option: this configuration option just disabled the rollback timeout. You can just set the "readyTimeout" configuration option to undefined to have the same behavior.