X-Git-Url: https://deadsoftware.ru/gitweb?a=blobdiff_plain;f=android%2Fbuild.gradle;h=4beaa6e2dd6650aaf0bac53c0fc489a0c29399fa;hb=1c798d88e9c23d438e7fa770c9670b02a761f866;hp=23d84e2d24ab0bf9c3942da07fdfc3a511c822d2;hpb=e37c627f8fac2664623836e37192f522a39faba3;p=cavedroid.git diff --git a/android/build.gradle b/android/build.gradle index 23d84e2..4beaa6e 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -24,7 +24,7 @@ android { minSdkVersion 9 targetSdkVersion 20 versionCode 5 - versionName "alpha0.4-dev" + 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 @@ -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 {