Run com.google.example.games.bc and don't execute

I am trying to run ButtonClick

google example and I am getting this exception:

10-12 15:50:22.744    7085-7085/com.google.example.games.bc E/๏น• Device driver API match
    Device driver API version: 23
    User space API version: 23
10-12 15:50:22.744    7085-7085/com.google.example.games.bc E/๏น• mali: REVISION=Linux-r3p2-01rel3 BUILD_DATE=Wed Oct  9 21:05:57 KST 2013
10-12 15:50:23.049    7085-7085/com.google.example.games.bc E/AndroidRuntime๏น• FATAL EXCEPTION: main
    java.lang.IllegalStateException: A fatal developer error has occurred. Check the logs for further information.
            at com.google.android.gms.internal.id$h.b(Unknown Source)
            at com.google.android.gms.internal.id$h.e(Unknown Source)
            at com.google.android.gms.internal.id$b.fv(Unknown Source)
            at com.google.android.gms.internal.id$a.handleMessage(Unknown Source)
            at android.os.Handler.dispatchMessage(Handler.java:99)
            at android.os.Looper.loop(Looper.java:176)
            at android.app.ActivityThread.main(ActivityThread.java:5419)
            at java.lang.reflect.Method.invokeNative(Native Method)
            at java.lang.reflect.Method.invoke(Method.java:525)
            at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1046)
            at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:862)
            at dalvik.system.NativeStart.main(Native Method)

      

I haven't changed anything from the Git project (from Google).

Any hint?

Thanks in advance.

+3


source to share


2 answers


Found it!

There AndroidManifest.xml

is a ReplaceMe tag in:

<meta-data android:name="com.google.android.gms.games.APP_ID"
            android:value="ReplaceMe" />

      

There strings.xml

is a resource in string

:



<string name="app_id">ReplaceMe</string>

      

To replace ReplaceMe :) app ID

with google play console

.

Good luck!

+1


source


If you don't want to pay google play console

, you can set <string name="app_id">1</string>

instrings.xml



0


source







All Articles