问题描述
我已经将我的应用程序上传到了Google商店,但是我的一些朋友无法安装它,他们得到了您的设备与此版本不兼容"的信息.
我已经检查了sdk,屏幕尺寸和权限要求,还使用了false所需的使用功能,但仍然有些设备无法安装它.
我在Play控制台的设备目录中发现的部分支持某些型号,受支持的设备包括:阿比arm64-v8aarmeabi-v7a阿米比
和仅不受支持的设备:armeabi-v7a阿米比
我开发的应用程序有些扑朔迷离,我缺少什么?谢谢!
您可能设置了更高的最小sdk,或者在生成apk armeabi-v7a时,将armeabi排除在外,请检查app/build.gradle
在build.gradle中更改
splits {
abi {
reset()
enable true
universalApk true // If true, also generate a universal APK
include "armeabi-v7a", "x86", "arm64-v8a"
}
}
注释:这将为不同的平台和一个通用平台生成4个APK 3.
I have uploaded my app to the google store, but some of my friends are not able to install it, they get the "Your device isnt compatible with this version".
I have checked the sdk, screen sizes and permissions requirements, also uses-features required to false, and still some devices are not able to install it.
What Ive find out in the device catalog in the play console is that some models are partially supported, the supported devices have:ABIarm64-v8aarmeabi-v7aarmeabi
and the unsupported devices only:armeabi-v7aarmeabi
I have developed the app with flutter, what am I missing? Thanks!
you might have set a higher minimum sdk or while generating apk armeabi-v7a armeabi is getting excluded, check app/build.gradle
change this in build.gradle
splits {
abi {
reset()
enable true
universalApk true // If true, also generate a universal APK
include "armeabi-v7a", "x86", "arm64-v8a"
}
}
note: this will generate 4 apks 3 for different platform and one universal
这篇关于Google Play商店中不受支持的设备-Flutter的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!