我想将Chartboost添加到我的LibGDX游戏中,但我不知道如何将其添加为Gradle的依赖项。此外,Chartboost使用Google Play游戏服务,因此我需要将它们添加到Gradle。我怎么能这样做?
答案 0 :(得分:2)
似乎mapboost 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.
}