我想将 Chartboost 添加到我的 LibGDX 游戏中,但我不知道如何将它作为依赖项添加到 Gradle。此外,Chartboost 使用 Google Play 游戏服务,所以我需要将它们都添加到 Gradle。我怎样才能做到这一点?
问问题
871 次
1 回答
2
似乎 chartboost jar 未发布到公共 maven 存储库,因此您需要通过文件引用它:
dependency {
// references a file relative to the project folder
files('libs/chartboost.jar')
}
要添加 google play 服务,您可以像这样使用它:
dependencies {
// Google Play Services
compile 'com.google.android.gms:play-services:5.0.77'
// Note: these libraries require the "Google Repository" and "Android Repository"
// to be installed via the SDK manager.
}
于 2014-09-19T19:17:58.113 回答