DEADSOFTWARE

Update version
[cavedroid.git] / android / build.gradle
index b8cfebe5ba54a0ea8532283c7840a3909f91543c..cf371cc8ed2a6cefa38d86c84180e236345cb1ec 100644 (file)
@@ -1,6 +1,10 @@
+plugins {
+    id "kotlin-android"
+}
+
 android {
-    buildToolsVersion "28.0.3"
-    compileSdkVersion 29
+    namespace "ru.deadsoftware.cavedroid"
+    compileSdkVersion 34
     sourceSets {
         main {
             manifest.srcFile 'AndroidManifest.xml'
@@ -16,18 +20,18 @@ android {
         }
     }
     compileOptions {
-        sourceCompatibility 1.8
-        targetCompatibility 1.8
+        sourceCompatibility 17
+        targetCompatibility 17
     }
     packagingOptions {
         exclude 'META-INF/robovm/ios/robovm.xml'
     }
     defaultConfig {
         applicationId "ru.deadsoftware.cavedroid"
-        minSdkVersion 14
-        targetSdkVersion 29
-        versionCode 10
-        versionName "alpha0.4"
+        minSdkVersion 24
+        targetSdkVersion 34
+        versionCode 14
+        versionName "alpha0.5.0"
     }
     applicationVariants.all { variant ->
         variant.outputs.all {
@@ -42,6 +46,9 @@ android {
             applicationIdSuffix ".debug"
         }
     }
+    buildFeatures {
+        buildConfig true
+    }
 
 }