53 lines
No EOL
1 KiB
Text
53 lines
No EOL
1 KiB
Text
plugins {
|
|
id("com.android.application")
|
|
id("kotlin-android")
|
|
}
|
|
|
|
android {
|
|
compileSdk = 30
|
|
buildToolsVersion = "30.0.3"
|
|
|
|
defaultConfig {
|
|
applicationId = "com.surrus.peopleinspace"
|
|
minSdk = 30
|
|
targetSdk = 30
|
|
versionCode = 1
|
|
versionName = "1.0"
|
|
}
|
|
|
|
buildFeatures {
|
|
compose = true
|
|
}
|
|
|
|
composeOptions {
|
|
kotlinCompilerExtensionVersion = Versions.compose
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
isMinifyEnabled = false
|
|
proguardFiles(getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro")
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
|
|
with(Deps.AndroidX) {
|
|
implementation(activityCompose)
|
|
}
|
|
|
|
with(Deps.Compose) {
|
|
implementation(wearFoundation)
|
|
implementation(wearMaterial)
|
|
implementation(accompanistCoil)
|
|
}
|
|
|
|
with(Deps.Koin) {
|
|
implementation(core)
|
|
implementation(android)
|
|
implementation(compose)
|
|
}
|
|
|
|
implementation(project(":common"))
|
|
} |