X-Git-Url: https://deadsoftware.ru/gitweb?a=blobdiff_plain;f=android%2Fbuild.gradle;h=097eff5c93375e6724b90ec2c4d1ac5b202c443f;hb=refs%2Ftags%2Falpha0.5.1;hp=3430ac90888e3486f7f18a87bfd6d1687a5b876b;hpb=cab1b788df7221370108854b08e747e8e4382968;p=cavedroid.git diff --git a/android/build.gradle b/android/build.gradle index 3430ac9..097eff5 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -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' @@ -15,15 +19,19 @@ android { res.srcDirs = ['debug/res'] } } + compileOptions { + 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 15 + versionName "alpha0.5.1" } applicationVariants.all { variant -> variant.outputs.all { @@ -38,6 +46,9 @@ android { applicationIdSuffix ".debug" } } + buildFeatures { + buildConfig true + } }