用于 Android Runtime for Chrome (ARC) 的 Google Play 服务 SDK 版本通常是由 Google 管理和更新的。ARC 是一个允许 Android 应用在 Chrome OS 上运行的兼容层。为了确保最佳兼容性和功能,Google Play 服务 SDK 的版本会随着 Chrome OS 的更新而更新。
如果你是开发者,并且希望确保你的应用在 ARC 上运行时使用正确的 Google Play 服务 SDK 版本,可以参考以下几点:
GoogleApiAvailability
类来检查 Google Play 服务的可用性,并在必要时提示用户更新。GoogleApiAvailability apiAvailability = GoogleApiAvailability.getInstance(); int resultCode = apiAvailability.isGooglePlayServicesAvailable(this); if (resultCode != ConnectionResult.SUCCESS) { if (apiAvailability.isUserResolvableError(resultCode)) { apiAvailability.getErrorDialog(this, resultCode, PLAY_SERVICES_RESOLUTION_REQUEST).show(); } else { Log.i(TAG, "This device is not supported."); finish(); } }
领取专属 10元无门槛券
手把手带您无忧上云