Skip to content

Android Errors

dwieeb edited this page Apr 2, 2020 · 11 revisions

ERR_INCOMPATIBLE_UPDATE

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.

ERR_VERSION_DOWNGRADE

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.

ERR_MIN_SDK_VERSION

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.

ERR_NO_CERTIFICATES

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.

Clone this wiki locally