简体   繁体   English

从签名的apk获取某些设备上的“App Not Installed”

[英]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 在AndroidManifest.xml中添加了signingConfigs

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

  1. Now select “release” in Build Variants 现在在Build Variants中选择“release”

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 已签名的APK,在某些设备中“未安装应用”以及在某些设备中,相同的apk正常运行 - Signed APK, “App not installed” in some devices, and in some devices same apk is working fine 从Eclipse通过Signed APK安装的Android App无法打开 - Android App installed through Signed APK from Eclipse is not opening 从Play商店在设备上安装了错误的APK - Wrong apk getting installed on devices from play store 签名的APK无法安装gmail附件 - signed apk not getting installed form gmail attachment Xamarin,Android - 签名 APK 未安装应用程序错误 - Xamarin, Android - App not installed error with signed APK 已签名 Flutter 应用程序:未安装 Android APK - Signed Flutter App: Not Installed Android APK 使用签名的 apk 升级时未安装应用程序 - App not installed while upgrading using signed apk “未安装应用程序”尝试安装已签名的 apk - "App not installed" trying to install signed-apk 安装签名的APK时出现“未安装应用” - “app not installed” when installing signed apk onTokenRefresh不会在签名的APK中调用,如果安装的先前版本的应用程序没有实现FCM - onTokenRefresh not getting called in signed APK, if previous version of app installed doesn't have FCM implemented
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM