init
This commit is contained in:
37
android/build.gradle.kts
Normal file
37
android/build.gradle.kts
Normal file
@ -0,0 +1,37 @@
|
||||
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
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user