Google Play商店中不受支持的设备-Flutter [英] Unsupported devices in Google Play Store - Flutter

查看:370
本文介绍了Google Play商店中不受支持的设备-Flutter的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我已经将我的应用程序上传到了Google商店,但是我的一些朋友无法安装它,他们得到了您的设备与此版本不兼容"的信息.

我已经检查了sdk,屏幕尺寸和权限要求,还使用了false所需的使用功能,但仍然有些设备无法安装它.

我在Play控制台的设备目录中发现的部分支持某些型号,受支持的设备包括: 阿比 arm64-v8a armeabi-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: ABI arm64-v8a armeabi-v7a armeabi

and the unsupported devices only: armeabi-v7a armeabi

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的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆