com.google.android.gms.common.api.ApiException:17:API:Nearby.CONNECTIONS_API在此设备上不可用

问题描述 投票:0回答:1

对于附近的连接,我在连接失败时遇到此问题

任何人都可以遇到这个问题吗?我正在使用所有最新的谷歌依赖项

com.google.android.gms.common.api.ApiException:17:API:Nearby.CONNECTIONS_API 在此设备上不可用。连接失败:ConnectionResult{statusCode=INTERNAL_ERROR,resolution=null,message=null}

android google-nearby google-nearby-connections
1个回答
0
投票

您的设备必须有 Google Play 服务。您可以使用以下代码检查设备是否有 google play 服务。

private fun isGooglePlayServicesAvailable(): Boolean {
    val availability = GoogleApiAvailability.getInstance()
    val resultCode = availability.isGooglePlayServicesAvailable(this)
    if (resultCode != ConnectionResult.SUCCESS) {
        availability.getErrorDialog(this, resultCode, 0)?.show()
        return false
    }
    return true
}
© www.soinside.com 2019 - 2024. All rights reserved.