DEADSOFTWARE

Fix jumping and ui controls
[cavedroid.git] / android / build.gradle
index b8cfebe5ba54a0ea8532283c7840a3909f91543c..f0e5e52042015e41914807c39ed74b2f344b19bc 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,17 +20,17 @@ android {
         }
     }
     compileOptions {
-        sourceCompatibility 1.8
-        targetCompatibility 1.8
+        sourceCompatibility 11
+        targetCompatibility 11
     }
     packagingOptions {
         exclude 'META-INF/robovm/ios/robovm.xml'
     }
     defaultConfig {
         applicationId "ru.deadsoftware.cavedroid"
-        minSdkVersion 14
-        targetSdkVersion 29
-        versionCode 10
+        minSdkVersion 24
+        targetSdkVersion 34
+        versionCode 11
         versionName "alpha0.4"
     }
     applicationVariants.all { variant ->
@@ -42,6 +46,9 @@ android {
             applicationIdSuffix ".debug"
         }
     }
+    buildFeatures {
+        buildConfig true
+    }
 
 }