2016-04-14 18 views
-1

私のアプリでは、ユーザーにGoogle Playサービスがあることを確認します。しかし、今、私はこのエラーを得た:IllegalAccessError Google Playサービス

java.lang.IllegalAccessError: tried to access class com.google.android.gms.common.GooglePlayServicesUtil.isGooglePlayServicesAvailable(GooglePlayServicesUtil.java) 

昨日、私はこのエラーを得なかったまで、私は、私のアプリでGoogle Playのサービス8.3.0を使用します。

+0

"Clean Project"を試してください –

+0

私はそれをしましたが、私の問題は解決しませんでした。 – just

答えて

0

これは、GooglePlayServicesUtilのisGooglePlayServicesAvailableメソッドが廃止されたためです(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))で新しいものをチェックアウトして使用する必要があります。

+0

ありがとう! Google Playサービスのバージョンが8.7.03(2645110-036)の場合、このエラーが発生することが判明しました。他のバージョン(私は試しました... 034と... 238)は大丈夫です。 – just

関連する問題