Android Google Play, a fatal developer error occurred. Check the logs for more information.

I used the google play service in my MathBuzz game . Now the Google Play service library has changed, and I follow this GIT HUB SOURCE

I was able to compile, but I get an error

E/AndroidRuntime(20184): Process: com.mass.mathbuzz, PID: 20184 E/AndroidRuntime(20184): java.lang.IllegalStateException: A fatal developer error has occurred. Check the logs for further information. E/AndroidRuntime(20184): at com.google.android.gms.common.internal.zzi$zza.zzc(Unknown Source) E/AndroidRuntime(20184): at com.google.android.gms.common.internal.zzi$zza.zzr(Unknown Source) E/AndroidRuntime(20184): at com.google.android.gms.common.internal.zzi$zzc.zznQ(Unknown Source) E/AndroidRuntime(20184): at com.google.android.gms.common.internal.zzi$zzb.handleMessage(Unknown Source) E/AndroidRuntime(20184): at android.os.Handler.dispatchMessage(Handler.java:102) E/AndroidRuntime(20184): at android.os.Looper.loop(Looper.java:135) E/AndroidRuntime(20184): at android.app.ActivityThread.main(ActivityThread.java:5329) E/AndroidRuntime(20184): at java.lang.reflect.Method.invoke(Native Method) E/AndroidRuntime(20184): at java.lang.reflect.Method.invoke(Method.java:372) E/AndroidRuntime(20184): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:904) E/AndroidRuntime(20184): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:699) 

my AndroidManifest below

 <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.mass.mathbuzz"> <uses-permission android:name="android.permission.INTERNET" /> <application android:allowBackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:theme="@style/AppTheme"> <meta-data android:name="com.google.android.gms.appstate.APP_ID" android:value="@string/app_id" /> <meta-data android:name="com.google.android.gms.version" android:value="@integer/google_play_services_version" /> <activity android:name=".MainActivity" android:label="@string/app_name"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> <activity android:name="com.mass.applist.AppListActivity" android:label="@string/app_name"></activity> </application> </manifest> 
+5
source share

All Articles