79 lines
2.0 KiB
Plaintext
79 lines
2.0 KiB
Plaintext
// [FILE] ui/common/build.gradle.kts
|
|
// [SEMANTICS] build, dependencies, common, ui, hilt, compose
|
|
|
|
// [PURPOSE] Build script for the shared UI common module.
|
|
|
|
plugins {
|
|
id("com.android.library")
|
|
id("org.jetbrains.kotlin.android")
|
|
id("org.jetbrains.kotlin.plugin.compose")
|
|
id("com.google.dagger.hilt.android")
|
|
id("kotlin-kapt")
|
|
}
|
|
|
|
android {
|
|
namespace = "com.homebox.lens.ui.common"
|
|
compileSdk = Versions.compileSdk
|
|
|
|
defaultConfig {
|
|
minSdk = Versions.minSdk
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
|
}
|
|
kotlinOptions {
|
|
jvmTarget = "1.8"
|
|
}
|
|
buildFeatures {
|
|
compose = true
|
|
}
|
|
packaging {
|
|
resources {
|
|
excludes += "/META-INF/{AL2.0,LGPL2.1}"
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
// [MODULE_DEPENDENCY] Core modules
|
|
implementation(project(":data"))
|
|
implementation(project(":domain"))
|
|
|
|
// [DEPENDENCY] AndroidX
|
|
implementation(Libs.coreKtx)
|
|
implementation(Libs.lifecycleRuntime)
|
|
implementation(Libs.activityCompose)
|
|
|
|
// [DEPENDENCY] Compose
|
|
implementation(Libs.composeUi)
|
|
implementation(Libs.composeUiGraphics)
|
|
implementation(Libs.composeFoundation)
|
|
implementation(Libs.composeUiToolingPreview)
|
|
implementation(Libs.composeMaterial3)
|
|
implementation(Libs.composeMaterialIconsExtended)
|
|
implementation(Libs.navigationCompose)
|
|
implementation(Libs.hiltNavigationCompose)
|
|
|
|
// [DEPENDENCY] DI (Hilt)
|
|
implementation(Libs.hiltAndroid)
|
|
kapt(Libs.hiltCompiler)
|
|
|
|
// [DEPENDENCY] Logging
|
|
implementation(Libs.timber)
|
|
|
|
// [DEPENDENCY] Testing
|
|
testImplementation(Libs.junit)
|
|
androidTestImplementation(Libs.extJunit)
|
|
androidTestImplementation(Libs.espressoCore)
|
|
androidTestImplementation(Libs.composeUiTestJunit4)
|
|
debugImplementation(Libs.composeUiTooling)
|
|
debugImplementation(Libs.composeUiTestManifest)
|
|
}
|
|
|
|
kapt {
|
|
correctErrorTypes = true
|
|
}
|
|
|
|
// [END_FILE_ui/common/build.gradle.kts] |