#Not Able to install APK (SOLVED)
1 messages · Page 1 of 1 (latest)
that url doesnt work, why wouldnt it install? any errors?
https://drive.google.com/file/d/1QWD7xfLWBY9k9_8cEGHLWtG7b-5PTV1o/view?usp=sharing
Please check this. Not displaying any error, not able to install app
You still need to sign it, at least with dummy/dev keys. A quick windows example, but you'll need to edit the file locations. And this example is run in the directory with the APK's:
C:\Users\YOUR_USER\AppData\Local\Android\Sdk\build-tools\36.0.0\apksigner.bat sign --ks C:\Users\YOUR_USER\.android\debug.keystore --ks-key-alias androiddebugkey --ks-pass pass:android --key-pass pass:android --out app-release-signed.apk app-release-unsigned.apk
...then if it's a locally connected device, you can install it with:
adb install -r .\app-release-signed.apk
To be able to see what the issue is and get more than the generic "nope" error in the android UI, try for example:
adb install -r .\app-release-unsigned.apk
...that should show an error like adb: failed to install .\app-release-unsigned.apk: Failure [INSTALL_PARSE_FAILED_NO_CERTIFICATES ... and is a lot more helpful when figuring out the issue. (You can also setup the signing in the project config, but that's a more complex topic.)
Thank you very much now APP is working ♥️
Not Able to install APK (SOVED)