简体   繁体   English

应用程序未从 Play 商店安装在某些设备中

[英]App not installing in some devices from play store

I have an app published in Beta.我有一个在 Beta 版中发布的应用程序。 It's not installing in some of the Redmi and Samsung devices.它没有安装在某些 Redmi 和三星设备中。 The app is getting download from the play store and while installing it shows an error dialog " Can't install the app , Try again, if it still doesn't work. see the common ways to fix the problem. "该应用程序正在从 Play 商店下载,安装时显示错误对话框“无法安装该应用程序,如果仍然无法正常工作请重试。查看解决问题的常用方法。

在此处输入图像描述

There can be two cases :可能有两种情况:

  1. You're trying to install incompatible APK.您正在尝试安装不兼容的 APK。
  2. Play Protect had flagged your apk. Play Protect 已标记您的 apk。

If you're sure about the compatibility (min api version, abi's etc) of your apk then You can try to disable PlayProtect and then install your apk.如果您确定您的 apk 的兼容性(最小 api 版本、abi 等),那么您可以尝试禁用PlayProtect ,然后安装您的 apk。

*Beware PlayProtect is an Essential feature and one of the ways in which Google is trying to stop malware and harmful apps on the Android platform, So make sure you are installing a trusted APK *注意PlayProtect是一项基本功能,也是 Google 试图阻止 Android 平台上的恶意软件和有害应用程序的一种方式,因此请确保您安装的是受信任的 APK

Common cases, the app is not supporting devices in 64-bit.常见情况下,该应用程序不支持 64 位设备。 Check with one of the devices if it is 64bit and if your build.gradle file is having below:检查其中一台设备是否为 64 位,并且您的build.gradle文件是否包含以下内容:

Most Android Studio projects use Gradle as the underlying build system, so this section applies to both cases.大多数 Android Studio 项目都使用 Gradle 作为底层构建系统,因此本节适用于这两种情况。 Enabling builds for your native code is as simple as adding the arm64-v8a and/or x86_64, depending on the architecture(s) you wish to support, to the ndk.abiFilters setting in your app's 'build.gradle' file:为您的本机代码启用构建就像添加 arm64-v8a 和/或 x86_64 一样简单,具体取决于您希望支持的架构,到您应用程序的“build.gradle”文件中的 ndk.abiFilters 设置:

// Your app's build.gradle
apply plugin: 'com.android.app'

android {
   compileSdkVersion 27
   defaultConfig {
       appId "com.google.example.64bit"
       minSdkVersion 15
       targetSdkVersion 28
       versionCode 1
       versionName "1.0"
       ndk.abiFilters 'armeabi-v7a', 'arm64-v8a', 'x86', 'x86_64'
// ...

Check for reference below:检查以下参考:

How to make Android apps which support both 32-bit and 64-bit architecture? 如何制作同时支持 32 位和 64 位架构的 Android 应用程序?

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

相关问题 应用程式未在某些装置的Play商店中显示 - App not showing in Play Store in some devices 在某些设备上的 Play 商店中未显示 Android 应用 - Android app is not showing in play store on some devices 在某些设备上安装时,为什么我的应用在Google Play商店上引发Error-504? - Why my app throws Error - 504 on Google play store when installing on some devices? Flutter 我的应用在某些设备上从 Play 商店下载后卡在白屏 - Flutter my app stuck at white screen after downloading from play store in some devices 某些设备上的Android应用未显示在Play商店中 - Android app not showing up in play store on some devices Play商店中的某些LG设备看不到我的应用程序 - My app is invisible for some LG devices on play store 在某些设备上,我的android应用在Google Play商店中不可见。 - my android app is not visible in google play store for some devices.? 我已将我的应用程序上传到 Play 商店,但有些设备没有出现 - I have upload my app into play store, but some devices not appeared 某些不支持Play商店中的应用的设备 - Some devices that doesn't support app in play store 有些用户从谷歌商店安装后无法打开我的应用程序,如何检查原因? - Some users cannot open my app after installing from google play store, how to check the cause?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM