37 lines
749 B
Plaintext
37 lines
749 B
Plaintext
plugins {
|
|
id("org.jetbrains.compose")
|
|
id("com.android.application")
|
|
kotlin("android")
|
|
}
|
|
|
|
group "com.eim"
|
|
version "1.0-SNAPSHOT"
|
|
|
|
repositories {
|
|
jcenter()
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":common"))
|
|
implementation("androidx.activity:activity-compose:1.3.0")
|
|
}
|
|
|
|
android {
|
|
compileSdkVersion(31)
|
|
defaultConfig {
|
|
applicationId = "com.eim.android"
|
|
minSdkVersion(24)
|
|
targetSdkVersion(31)
|
|
versionCode = 1
|
|
versionName = "1.0-SNAPSHOT"
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
|
}
|
|
buildTypes {
|
|
getByName("release") {
|
|
isMinifyEnabled = false
|
|
}
|
|
}
|
|
} |