X-Git-Url: https://deadsoftware.ru/gitweb?a=blobdiff_plain;f=android%2Fbuild.gradle;h=9ab1ade2fdc0ed7a3ca1d2ee598750bcd707769c;hb=eea2144782307759c426c79d2d80c357858053f7;hp=76416ae323ebed867869073f822fc95f7d514877;hpb=10722882ff25a56c5c3d292b4069463ed8eb8e76;p=cavedroid.git diff --git a/android/build.gradle b/android/build.gradle index 76416ae..9ab1ade 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -20,11 +20,11 @@ android { exclude 'META-INF/robovm/ios/robovm.xml' } defaultConfig { - applicationId "ru.deadsoftware.cavecraft" + applicationId "ru.deadsoftware.cavedroid" minSdkVersion 9 targetSdkVersion 20 - versionCode 4 - versionName "alpha0.3" + versionCode 5 + versionName "alpha0.4" } buildTypes { release { @@ -40,11 +40,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 @@ -81,7 +81,7 @@ task run(type: Exec) { } def adb = path + "/platform-tools/adb" - commandLine "$adb", 'shell', 'am', 'start', '-n', 'ru.deadsoftware.cavecraft/ru.deadsoftware.cavecraft.AndroidLauncher' + commandLine "$adb", 'shell', 'am', 'start', '-n', 'ru.deadsoftware.cavedroid/ru.deadsoftware.cavedroid.AndroidLauncher' } // sets up the Android Eclipse project, using the old Ant based build. eclipse { @@ -106,7 +106,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" @@ -116,14 +116,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 {