gpt4 book ai didi

android - 谷歌播放服务 : How to handle devices that do not have Google Play?

转载 作者:IT老高 更新时间:2023-10-28 22:13:45 27 4
gpt4 key购买 nike

Google Play services是一个 Android 库,其目标是提供:

  • OAuth 2.0 身份验证
  • Google+ 登录
  • Google+ +1 按钮
  • 其他各种好东西

如果我要使用它(例如,因为我想登录 Google+),那么设备上没有 Google Play 的用户会怎样? (Nook、Cyanogenmod、中国移动、旧设备、maybe Huawei? 等)

问题:我的应用会与此类设备不兼容吗?它会显示为兼容但随后崩溃,还是不起作用?
使用 Google Play 服务时是否有最佳做法可以牢记这一点?

最佳答案

GooglePlayServicesUtil.isGooglePlayServicesAvailable(android.content.Context)

已弃用!

用途:

 GoogleApiAvailability api = GoogleApiAvailability.getInstance();
int code = api.isGooglePlayServicesAvailable(activity);
if (code == ConnectionResult.SUCCESS) {
// Do Your Stuff Here
} else {
AlertDialog alertDialog =
new AlertDialog.Builder(activity, R.style.AppCompatAlertDialogStyle).setMessage(
"You need to download Google Play Services in order to use this part of the application")
.create();
alertDialog.show();
}

关于android - 谷歌播放服务 : How to handle devices that do not have Google Play?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13191875/

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