Android - Google Play Service, Game Client, Run time Error

♀尐吖头ヾ 提交于 2019-12-08 02:49:26

Make sure that you have all 3 meta-data tags in your manifest file -

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

 <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"/>

May be you haven't configured OAuth2 client id in Google Deveopers Console.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!