gpt4 book ai didi

无法安装 Android Play Services Leaderboard (BaseGameUtils)

转载 作者:行者123 更新时间:2023-11-29 14:37:39 27 4
gpt4 key购买 nike

我关注 https://developers.google.com/games/services/android/init设置排行榜。所以在我的游戏项目中,我设置了 google_play_services 库,因为它已经使用了 AdMob。现在我需要所有 Also BaseGameUtils。但是上面链接中“设置游戏项目”部分中的步骤不起作用。让我说说我做了什么:

  1. 打开 https://github.com/playgameservices/android-basic-samples并按下“下载 ZIP”。
  2. 解压缩 zip 并将文件夹导入到我的项目中。取消所有选择并仅选择 BasicSamples/libraries/BaseGameUtils/src/main,它作为 main 而不是作为 BaseGameUtils 添加到我的项目中。
  3. 右键单击 main 项目,在 Properties->Android 部分选择 Is Library 并在 Properties- 我的游戏项目中>Android 部分添加了对 main 库的引用。 (请注意,如果您不选择 Is Library,您将无法执行 6. 在 Library 面板中,单击 Add 按钮。 7. 选择 BaseGameUtils。指示的步骤在教程中)
  4. 在我的包 src 目录中创建一个新类,如下所示:
import gms.common.api.*;

import com.google.example.games.basegameutils.BaseGameActivity;

public class MyGameActivity extends BaseGameActivity {

但是这两个导入都不被识别。如何设置这个?这本来应该如此简单,但它是如此令人毛骨悚然吗?

最佳答案

教程中的步骤不完整。以下是实际步骤:

  1. 已打开 https://github.com/playgameservices/android-basic-samples并按下“下载 ZIP”或者你也可以克隆 git repo。

  2. 然后是Scripts/make_eclipse_compat(.cmd for Windows)脚本。 cd android-basic-samples; 并运行脚本。它在 Scripts 目录旁边生成 eclipse_compat

  3. 导入到 eclipse android-basic-samples/eclipse_compat/libraries/BaseGameUtils 而不是下载的原始 BaseGameUtils。请注意,在这种情况下,在 Eclipse 中,您不会添加 main 项目,而是添加一个名为 BaseGameUtils 的项目。

  4. 右键单击 BaseGameUtils 项目转到 Properties->Android 并确保选中 Is Library 并添加 google_play_services 作为引用库。

  5. 如果您使用 Facebook SDK 或其他 SDK,那么您可能会遇到这样的冲突:

Found 2 versions of android-support-v4.jar in the dependency list, but not all the versions are identical (check is based on SHA-1........

这是分辨率:Facebook SDK for Android duplicate support library on dependencies

  1. 还有

    导入 gms.common.api.*;

你应该这样做是错误的:

import com.google.android.gms.common.api.*;
import com.google.example.games.basegameutils.BaseGameActivity;


public class MyGameActivity extends BaseGameActivity {

关于无法安装 Android Play Services Leaderboard (BaseGameUtils),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26442525/

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