From fc6686aba640ddf1bdbed952dcdbec67fbecd845 Mon Sep 17 00:00:00 2001 From: Lonami Exo Date: Thu, 5 Sep 2019 16:25:22 +0200 Subject: [PATCH] Bump to v0.8.3, remove more warnings from gradle files --- android/build.gradle | 24 ++++++++++++------------ build.gradle | 6 +++--- 2 files changed, 15 insertions(+), 15 deletions(-) diff --git a/android/build.gradle b/android/build.gradle index d782f4f..1753c0d 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -20,10 +20,10 @@ android { defaultConfig { applicationId "dev.lonami.klooni" minSdkVersion 8 - targetSdkVersion 25 + targetSdkVersion 28 - versionCode 820 - versionName "0.8.2" + versionCode 830 + versionName "0.8.3" } } @@ -32,11 +32,11 @@ android { // the natives configuration, and extracts them to the proper libs/ folders // so they get packed with the APK. task copyAndroidNatives() { - file("libs/armeabi/").mkdirs(); - file("libs/armeabi-v7a/").mkdirs(); - file("libs/arm64-v8a/").mkdirs(); - file("libs/x86_64/").mkdirs(); - file("libs/x86/").mkdirs(); + file("libs/armeabi/").mkdirs() + file("libs/armeabi-v7a/").mkdirs() + file("libs/arm64-v8a/").mkdirs() + file("libs/x86_64/").mkdirs() + file("libs/x86/").mkdirs() configurations.natives.files.each { jar -> def outputDir = null @@ -100,7 +100,7 @@ eclipse { project { name = appName + "-android" natures 'com.android.ide.eclipse.adt.AndroidNature' - buildCommands.clear(); + buildCommands.clear() buildCommand "com.android.ide.eclipse.adt.ResourceManagerBuilder" buildCommand "com.android.ide.eclipse.adt.PreCompilerBuilder" buildCommand "org.eclipse.jdt.core.javabuilder" @@ -111,14 +111,14 @@ eclipse { // sets up the Android Idea project, using the old Ant based build. idea { module { - sourceDirs += file("src"); + sourceDirs += file("src") scopes = [ COMPILE: [plus:[project.configurations.compile]]] iml { withXml { def node = it.asNode() - def builder = NodeBuilder.newInstance(); - builder.current = node; + def builder = NodeBuilder.newInstance() + builder.current = node builder.component(name: "FacetManager") { facet(type: "android", name: "Android") { configuration { diff --git a/build.gradle b/build.gradle index 370a0f5..2578cb7 100644 --- a/build.gradle +++ b/build.gradle @@ -41,9 +41,9 @@ project(":desktop") { dependencies { - compile project(":core") - compile "com.badlogicgames.gdx:gdx-backend-lwjgl:$gdxVersion" - compile "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-desktop" + implementation project(":core") + implementation "com.badlogicgames.gdx:gdx-backend-lwjgl:$gdxVersion" + implementation "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-desktop" } }