我开发了一个使用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更新?!