Update libGDX to 1.9.5 #270

This commit is contained in:
Emux
2016-12-14 14:17:03 +02:00
parent 61b8233b97
commit feae45f78b
7 changed files with 22 additions and 11 deletions

View File

@@ -13,13 +13,12 @@ apply plugin: 'robovm'
sourceSets.main.java.srcDirs = ["src/"]
sourceCompatibility = '1.7'
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
ext {
// Configure your application main class
mainClassName = "org.oscim.ios.RoboVmLauncher"
roboVMVersion = "2.2.0"
roboVMVersion = "2.3.0"
}
launchIPhoneSimulator.dependsOn build
@@ -47,11 +46,11 @@ task copyVtmThemesResources(type: Copy) {
}
tasks.withType(org.gradle.api.tasks.compile.JavaCompile) {
tasks.withType(JavaCompile) {
compileTask -> compileTask.dependsOn copyVtmResources
}
tasks.withType(org.gradle.api.tasks.compile.JavaCompile) {
tasks.withType(JavaCompile) {
compileTask -> compileTask.dependsOn copyVtmThemesResources
}