Production build for android
-
Doing dev assembly
quasar dev -m cordova -T androidThe application runs on a smartphone.
If you transfer app-debug.apk to your smartphone and install the application, then everything also works.
But if you execute
quasar build -m cordova -T android
and copy the file to the smartphone
app-release-unsigned.apkthen during installation, the system writes that the package is damaged and is not installed.
What am I doing wrong?
-
@devspo run
quasar build -m android --debug
or sign your apk, so you can install it without the debug option. It’s there in the docs. https://quasar.dev/quasar-cli/developing-cordova-apps/publishing-to-store#Android-Publishing -
@metalsadman Thank you friend. Everything works