-
I am testing the live update plugin locally, on a simulator. I updated the bundle ( My assumption is that live update bundles are wiped if the app (ie apk/aab/ipa) changes. My concern is that this behavior will also occur when the user updates the app. Edit,
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Update: it seems to use the new bundle, but |
Beta Was this translation helpful? Give feedback.
-
Hey, sorry for my late answer. For some reason I did not receive a notification for this discussion.
Yes, this is because the app no longer uses the default bundle but the latest live update. If you run
However, this is only a problem during development. It is NOT a problem in production, as the plugin automatically performs a reset during a native update, as the EDIT: I have just added this information to the docs: 9b1c27d |
Beta Was this translation helpful? Give feedback.
Hey, sorry for my late answer. For some reason I did not receive a notification for this discussion.
Yes, this is because the app no longer uses the default bundle but the latest live update. If you run
npm exec cap run
, the default bundle will be overwritten, but it is not currently in use because you have set another bundle via the live update plugin. You then have three options during development:reset()
method to reset …