This commit is contained in:
NianChen
2023-04-13 18:06:05 +08:00
commit e5873ae6fe
4063 changed files with 267552 additions and 0 deletions

37
android/build.gradle.kts Normal file
View 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
}
}
}