Varad Bhagwate
Varad Bhagwate

Reputation: 11

"App not installed" after a new version of App is created. [IONIC 3]

When a new version/update of an existing app is built, the app is not installed/updated over existing APK, whereas if the APK isn't installed previously on the device the updated APK is installed easily

All I did was changing the version from '1.0.0' to '1.0.1' in config.xml file enter image description here Any ideas? Thanks.

Upvotes: 1

Views: 121

Answers (1)

Piash Sarker
Piash Sarker

Reputation: 476

Please try to remove all existing platform, node_modules, plugins, www folders. Use below command in the project root directory:

rm -rf platforms/ node_modules/ plugins/ www/ .sourcemaps/ .tmp/

npm i

ionic cordova build android

Upvotes: 1

Related Questions