在我的应用中,我检查用户是否有Google Play服务。但现在我收到了这个错误:
java.lang.IllegalAccessError: tried to access class com.google.android.gms.common.GooglePlayServicesUtil.isGooglePlayServicesAvailable(GooglePlayServicesUtil.java)
我在我的应用中使用google play services 8.3.0,直到昨天我没有收到此错误。
答案 0 :(得分:0)
这是因为GooglePlayServicesUtil的googlePlayServicesAvailable方法现已弃用(https://developers.google.com/android/reference/com/google/android/gms/common/GooglePlayServicesUtil.html#isGooglePlayServicesAvailable(android.content.Context))。
您应该在GoogleApiAvailability类(https://developers.google.com/android/reference/com/google/android/gms/common/GoogleApiAvailability.html#isGooglePlayServicesAvailable(android.content.Context))中签出并使用新的。