-
Notifications
You must be signed in to change notification settings - Fork 26
Android Errors
This can occur if the app is already installed on the device and has a different signature than the APK you're trying to deploy. To fix this issue, completely uninstall the app from the device, then re-run native-run.
This can occur if the app is already installed on the device and has a newer version than the APK you're trying to deploy. To fix this issue, either increase the version of your app so that it is higher than the already installed version or completely uninstall the app from the device, then re-run native-run.
This is the result of your APK's minimum SDK requirements being newer than the device supports. To fix this issue, lower the SDK requirements or use a newer device.
For Cordova, try setting the android-minSdkVersion
preference in config.xml
as listed in the Cordova config docs.
This is likely the result of improper signing. Make sure your keystore is generated and configured correctly when building APKs. It originates from the INSTALL_PARSE_FAILED_NO_CERTIFICATES ADB error.
For Cordova, make sure to use the correct signing flags or use a build.json
file as shown in the Cordova Android Platform docs.