This commit is contained in:
andrekir
2024-06-30 10:22:18 -03:00
parent 4bf2d405ce
commit f622291983

View File

@@ -1,7 +1,8 @@
plugins {
id 'com.android.application'
id 'kotlin-android'
id 'kotlin-parcelize'
id "org.jetbrains.kotlin.android"
id "org.jetbrains.kotlin.plugin.compose"
id "org.jetbrains.kotlin.plugin.parcelize"
id 'kotlinx-serialization'
id 'com.google.dagger.hilt.android'
id 'de.mobilej.unmock'
@@ -36,8 +37,8 @@ android {
applicationId "com.geeksville.mesh"
minSdkVersion 21 // The oldest emulator image I have tried is 22 (though 21 probably works)
targetSdk 33
versionCode 30313 // format is Mmmss (where M is 1+the numeric major number
versionName "2.3.13"
versionCode 30314 // format is Mmmss (where M is 1+the numeric major number
versionName "2.3.14"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
// per https://developer.android.com/studio/write/vector-asset-studio
@@ -92,9 +93,6 @@ android {
aidl true
buildConfig true
}
composeOptions {
kotlinCompilerExtensionVersion = "1.5.14"
}
// Configure the build-logic plugins to target JDK 17
// This matches the JDK used to build the project, and is not related to what is running on device.
compileOptions {