DEADSOFTWARE

Update version
[cavedroid.git] / android / build.gradle
index a5ed087df1b3458384d90a0ddf8b1bccd50ba73f..fdd8e08ce776b5c89d94cfed6ef574eeeb66925e 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,8 +20,8 @@ android {
         }
     }
     compileOptions {
-        sourceCompatibility 1.8
-        targetCompatibility 1.8
+        sourceCompatibility 17
+        targetCompatibility 17
     }
     packagingOptions {
         exclude 'META-INF/robovm/ios/robovm.xml'
@@ -25,9 +29,9 @@ android {
     defaultConfig {
         applicationId "ru.deadsoftware.cavedroid"
         minSdkVersion 24
-        targetSdkVersion 29
-        versionCode 10
-        versionName "alpha0.4"
+        targetSdkVersion 34
+        versionCode 16
+        versionName "alpha0.5.2"
     }
     applicationVariants.all { variant ->
         variant.outputs.all {
@@ -42,6 +46,9 @@ android {
             applicationIdSuffix ".debug"
         }
     }
+    buildFeatures {
+        buildConfig true
+    }
 
 }