简体   繁体   中英

Getting “App Not Installed” on some devices from signed apk

I have done listed points for fixing the same but no luck:

1.  Changed package name
2.  Clear cache & checked if there is no previous build installed on device
3.  allowBackUp set to false
4.  Version upgradation and target SDK changed (In this case app is able to install some devices but some other devices getting the app not installed)
5.  Selected both V1 and V2 checkboxes (Signature Version)

Is there any other thing to do apart from above points?

After trying many solutions, I performed following steps which worked for me:

  1. File -> Invalidate Caches/Restart
  2. Added signingConfigs in AndroidManifest.xml

signingConfigs { config { keyAlias 'testAlias' keyPassword 'testPassword' storeFile file('/Users/raj.sharma/test-project/keystore') storePassword 'testPassword' } }

  1. Now select “release” in Build Variants

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM