You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
995 B
40 lines
995 B
4 years ago
|
import org.jetbrains.compose.compose
|
||
|
|
||
|
plugins {
|
||
|
id("com.android.application")
|
||
|
kotlin("android")
|
||
|
id("org.jetbrains.compose")
|
||
|
}
|
||
|
|
||
|
android {
|
||
|
compileSdkVersion(30)
|
||
|
|
||
|
defaultConfig {
|
||
|
minSdkVersion(23)
|
||
|
targetSdkVersion(30)
|
||
|
versionCode = 1
|
||
|
versionName = "1.0"
|
||
|
}
|
||
|
|
||
|
compileOptions {
|
||
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
||
|
targetCompatibility = JavaVersion.VERSION_1_8
|
||
|
}
|
||
|
|
||
|
packagingOptions {
|
||
|
exclude("META-INF/*")
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation(project(":common:database"))
|
||
|
implementation(project(":common:utils"))
|
||
|
implementation(project(":common:root"))
|
||
|
implementation(compose.material)
|
||
|
implementation(Deps.ArkIvanov.MVIKotlin.mvikotlin)
|
||
|
implementation(Deps.ArkIvanov.MVIKotlin.mvikotlinMain)
|
||
|
implementation(Deps.ArkIvanov.MVIKotlin.mvikotlinLogging)
|
||
|
implementation(Deps.ArkIvanov.MVIKotlin.mvikotlinTimeTravel)
|
||
|
implementation(Deps.ArkIvanov.Decompose.decompose)
|
||
|
}
|