我需要深入了解如何设置libGDX项目的gradle配置,我正在使用Eclipse。如何设置gradle文件,如build.gradle和settings.gradle,以使设置适用于IOS和Android libGDX项目。
感谢所有好的帮助,
Antoine
答案 0 :(得分:0)
要将google play服务添加到android,请打开build.gradle(来自项目文件夹)
project(":android") {
apply plugin: "android"
configurations { natives }
dependencies {
compile project(":core")
compile "com.badlogicgames.gdx:gdx-backend-android:$gdxVersion"
natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-armeabi"
natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-armeabi-v7a"
natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-x86"
compile "com.badlogicgames.gdx:gdx-box2d:$gdxVersion"
natives "com.badlogicgames.gdx:gdx-box2d-platform:$gdxVersion:natives-armeabi"
natives "com.badlogicgames.gdx:gdx-box2d-platform:$gdxVersion:natives-armeabi-v7a"
natives "com.badlogicgames.gdx:gdx-box2d-platform:$gdxVersion:natives-x86"
// ^ default things
compile 'com.google.android.gms:play-services:5.0.89' // this one, add this line
}
}
你可能需要为iOS做同样的事情。 (没有测试,我没有自己的Mac)。 如果有效,请告诉我。