gpt4 book ai didi

Android - 谷歌地图 v2 - 需要更新设备上的谷歌播放服务

转载 作者:行者123 更新时间:2023-11-29 14:38:55 25 4
gpt4 key购买 nike

我使用 SDK 21,当我想在设备上安装 apk 时,我在 google map v2 上开发,设备需要最新版本的 google play 服务。

我的问题是:

1 - 默认有安卓设备google play服务
2 - 要求客户安装此服务是否属实?
3 - 如果两个问题是肯定的,我如何将这个服务嵌入到我的项目中,我只是通知客户安装服务,我的项目自己安装这个服务

最佳答案

1 - have android devices google play service default

不,并非所有设备都默认安装了 google play 服务。

2 - is it true to ask customer to install this service ?
3 - if two question is yes , how can i embed this service on my project that i just notify customer to service installation and my project install this service by itself

通常您会使用 GooglePlayServicesUtil.isGooglePlayServicesAvailable(this); 检查设备上是否安装了 google play 服务,然后显示一个错误对话框,它链接到 Google Play 上的 google play 服务应用程序市场。

像这样:

int resultCode = GooglePlayServicesUtil.isGooglePlayServicesAvailable(this);
if (resultCode != ConnectionResult.SUCCESS) {
if (GooglePlayServicesUtil.isUserRecoverableError(resultCode)) {
GooglePlayServicesUtil.getErrorDialog(resultCode, this,
PLAY_SERVICES_RESOLUTION_REQUEST).show();
} else {
Log.i(TAG, "This device is not supported.");
finish();
}
}

有关更多信息,您可以查看此链接:http://developer.android.com/google/play-services/setup.html#ensure

关于Android - 谷歌地图 v2 - 需要更新设备上的谷歌播放服务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19218961/

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