When I use ‘build for production’ command (quasar build -m cordova -T android -t mat) and try to copy the apk generated, the device says ‘App cannot be installed’.
-
When I use ‘build for production’ command (quasar build -m cordova -T android -t mat) and try to copy the apk generated, the device says ‘App cannot be installed’. In dev build works nice but when I make production apk it can’t install it.
-
You should generate private key using the keytool command.
Then you can signed it with the jarsigner.
You can choose also to zipalign to optimize your app.https://quasar-framework.org/guide/cordova-publishing-to-store.html
-
Understand, but why I can’t install it unsigned? I check install unsigned app. It start installation and just stop it.
-
You cannot install an unsigned application on a real device. You can only use it on an emulator.
-
Understand! TNX a loot for explanation @sockhenzie I signed up and it works! TNX a loot!