美文网首页
Unity接入Google Play Games升级Unity后

Unity接入Google Play Games升级Unity后

作者: Francis_Rose | 来源:发表于2018-07-20 12:40 被阅读15次

    在将unity引擎升级到2018.1.6f版本,Android Studio升级到3.1.3版本之后,使用Google Play Games的授权登录会直接崩溃闪退,并且报错如下:

    看了会代码确实没有变动,错误很奇怪,后来在Google Play Games授权登录开源(https://github.com/playgameservices/play-games-plugin-for-unity)的地方找到一个临时解决方案,就是把AndroidManifest.xml文件中指定指定APP_ID的地方做如下修改:

    <meta-data android:name="com.google.android.gms.games.APP_ID" android:value="\ xxxxxxxxxxx" />改为

    <meta-data android:name="com.google.android.gms.games.APP_ID" android:value="\003xxxxxxxxxxx" />。

    参考:https://github.com/playgameservices/play-games-plugin-for-unity/issues/2013

    相关文章

      网友评论

          本文标题:Unity接入Google Play Games升级Unity后

          本文链接:https://www.haomeiwen.com/subject/taifmftx.html