Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Google Play Services Error - Bug report Incomprehensible

I have released an alpha version of my app with Google Play services. However, I have encountered this error when I tested the app on a phone with Google Play services. I hadn't got this error during compilation or running the app on a phone with an out of date Google Play Service. I Googled this error and in stack overflow but it didn't give me much answer. If anyone have any idea, please help.

By the way, I didn't enable pro-guard, so that isn't a problem

Here is the bug report:

java.lang.IllegalStateException: A fatal developer error has occurred.
Check the logs for further information.
at com.google.android.gms.internal.jl$h.b(Unknown Source)
at com.google.android.gms.internal.jl$h.g(Unknown Source)
at com.google.android.gms.internal.jl$b.hy(Unknown Source)
at com.google.android.gms.internal.jl$a.handleMessage(Unknown Source)
at android.os.Handler.dispatchMessage(Handler.java:99)
at android.os.Looper.loop(Looper.java:153)
at android.app.ActivityThread.main(ActivityThread.java:5338)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:511)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:833)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:600)
at dalvik.system.NativeStart.main(Native Method)

By the way, I use LibGdx, and I used google play services for leader boards, a achievements. I have followed this tutorial but it didn't help me much. Thanks in advance

like image 802
Fish Avatar asked Mar 03 '15 13:03

Fish


People also ask

Why do I keep getting an error on Google Play?

Google Play Store Errors typically contain random numbers and are generated when you try to download apps from the Google Play Store. These errors might be due to Google Play Store updates, Google cache issues, Google Play Store stored data issues, or Google account issues.

How do I restart Google Play Services?

Open Settings on your Android phone. Tap on “Apps” and “Google Play Services” under the “All apps” section. Select “Storage,” then press the “Clear cache” button followed by the “Clear data” or “Clear storage” button.

Can I clear cache on Google Play Services?

2 Search for Apps from the list and Tab on it. 3 Search for Google Play services and tab on it. 5 Then click on "Clear cache".


1 Answers

I forgot to post the answer after I solved the problem several months ago!

The problem was an extra space in the ID of the leaderboard.

Supposed that my leaderboard ID is "as129sadf92349dsfaj".

I wrote "as129sadf92349dsfaj ".

So google play services gave me this error.

like image 170
Fish Avatar answered Nov 10 '22 00:11

Fish