gpt4 book ai didi

android - Google Play 服务和 Unity3D 错误

转载 作者:行者123 更新时间:2023-11-30 02:04:23 25 4
gpt4 key购买 nike

我使用 official Google plugin for Unity3D在我的游戏中获得成就和排行榜,但是当我尝试调用 Google Play 登录时出现错误:

E/GamesNativeSDK﹕ Exception in dalvik/system/DexClassLoader.loadClass: java.lang.ClassNotFoundException: Didn't find class "com.google.android.gms.games.NativeSdkEntryPoints" on path: DexPathList[[zip file "/data/data/com.crazylabs.tabreak/app_.gpg.classloader/de80b70ed0da0dfe988a41fa560612ee.jar"],nativeLibraryDirectories=[/vendor/lib, /system/lib]].
06-19 18:02:45.058 25436-27013/? E/ValidateServiceOp﹕ Missing metadata tag with the name "com.google.android.gms.appstate.APP_ID" in the application tag of the manifest for com.company.game
06-19 18:02:45.105 25436-27012/? E/ValidateServiceOp﹕ Using Google Play games services requires a metadata tag with the name "com.google.android.gms.games.APP_ID" in the application tag of the manifest for

Android list :

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

最佳答案

您正在使用 com.google.android.gms.appstate.APP_ID ,当错误提示您需要 com.google.android.gms.games.APP_ID 时.

此外:确保将元数据标记放在 <application> 中 list 中的标记。

最后,您应该使用 android:value 的字符串文件夹中的应用程序 ID。属性。最后它应该是这样的:

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

希望对您有所帮助!

关于android - Google Play 服务和 Unity3D 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30941531/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com