gpt4 book ai didi

android - 如何在flutter中从其他android型号中检测华为设备型号?

转载 作者:行者123 更新时间:2023-12-04 14:50:20 30 4
gpt4 key购买 nike

由于我的应用是跨平台的,所以没有遇到什么问题,但是到了android,就出现了一些问题,比如华为移动设备无法访问google play,并且有自己的应用商店(App图库),问题来了,因为我的应用程序的规范之一是 强制用户下载最新版本 ,我不知道如何检测华为设备让用户直接从应用程序库下载我的应用程序。

最佳答案

您可以获取设备制造商来检测华为设备

DeviceInfoPlugin deviceInfo = DeviceInfoPlugin();
AndroidDeviceInfo androidInfo = await deviceInfo.androidInfo;
print('Running on ${androidInfo.manufacturer}');
使用的插件 - https://pub.dev/packages/device_info

您可以查看 GooglePlayServices 的可用性在设备中
GooglePlayServicesAvailability availability = await GoogleApiAvailability.instance.checkGooglePlayServicesAvailability();
需要插件 - https://pub.dev/packages/google_api_availability
注:如果使用 GooglePlayServices检查,还需要添加平台检查,因为它在 iOS 设备的情况下返回 false。

关于android - 如何在flutter中从其他android型号中检测华为设备型号?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69175262/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com