45 lines
886 B
Kotlin
45 lines
886 B
Kotlin
plugins {
|
|
alias(libs.plugins.androidLibrary)
|
|
alias(libs.plugins.kotlinAndroid)
|
|
alias(libs.plugins.kotlin.compose.compiler)
|
|
}
|
|
|
|
android {
|
|
namespace = "com.smarttoolfactory.gesture"
|
|
compileSdk = 34
|
|
|
|
defaultConfig {
|
|
minSdk = 30
|
|
}
|
|
|
|
buildTypes {
|
|
create("staging") {
|
|
initWith(getByName("release"))
|
|
isMinifyEnabled = false
|
|
isShrinkResources = false
|
|
}
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility = JavaVersion.VERSION_17
|
|
targetCompatibility = JavaVersion.VERSION_17
|
|
}
|
|
|
|
kotlinOptions {
|
|
jvmTarget = "17"
|
|
}
|
|
|
|
composeCompiler {
|
|
includeSourceInformation = true
|
|
}
|
|
|
|
buildFeatures {
|
|
compose = true
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation(libs.compose.foundation)
|
|
implementation(libs.compose.ui)
|
|
implementation(libs.compose.runtime)
|
|
} |