Home > Software design >  APK not installed on android devices
APK not installed on android devices

Time:08-27

I was making a react-native build for android devices through android studio. Generated a Sign-in APK for it. After build the APK on release mode when I tried to installed that APK on android device but I was unable t install itenter image description here.

CodePudding user response:

Make sure to uninstall any previous version of the App installed as they may have the same package name.

CodePudding user response:

There can be multiple reasons for this

  1. Your minimum SDK version is higher than your device SDK version
  2. Your device CPU architecture is not compatible with APK you generated
  3. others that I don't know
  • Related