需要更新Google服务以使用Google Location API

时间:2018-07-29 06:09:43

标签: android google-api

我开发了一个使用google api服务查找位置的应用。并使用此代码

GoogleApiAvailability apiAvailability = GoogleApiAvailability.getInstance();
int resultCode = apiAvailability.isGooglePlayServicesAvailable(this);
if (resultCode != ConnectionResult.SUCCESS && resultCode != ConnectionResult.SERVICE_VERSION_UPDATE_REQUIRED)
{
    //show error
}else{
    //get location from network
}

检查Google服务是否可用。

但有时resultcode的值是:

ConnectionResult.SERVICE_VERSION_UPDATE_REQUIRED

我可以从Google API正确获取设备中的位置。

现在我的问题是:

  

需要更新我的Google服务API吗?!

     

还是需要检查Google服务API更新?!

0 个答案:

没有答案