I built and deployed my app thru Live Update in AppFlow with the options below set.
- Target Platform: Web
- Linux - 2023.10
- Caching : Off
- Environment : none
- Ad-hoc Environment : none
- Web preview : off
- Live Update : on
- Webhook: off
appflow.config.json in my app source root
{
“apps”: [
{
“appId”: “2c6xxx”,
“dependencyInstallCommand”: “npm ci”,
“webBuildCommand”: “npm run build:prod”
}
]
}
but, downloaded and updated app has not latest node package.
I have a node package in dependencies on package.json, that I personally run that is being distributed in public mode on NPM, and I am updating the version of that package, but the version code of the updated package is not included in the latest build and is not running, and the node package that I initially installed manually is still running.
Finally, Question
After installing the apk on my device, if I add a new plugin in AppFlow without Google Play Store and set the target platform to Web, live update on, will the new plugin be distributed to the existing app? It currently does not work.