56 lines
No EOL
1.2 KiB
Kotlin
56 lines
No EOL
1.2 KiB
Kotlin
plugins {
|
|
id("com.android.library")
|
|
kotlin("android")
|
|
kotlin("kapt")
|
|
id("com.google.dagger.hilt.android")
|
|
}
|
|
|
|
android {
|
|
|
|
defaultConfig {
|
|
compileSdk = AppConfig.compileSdkVersion
|
|
minSdk = AppConfig.minSdkVersion
|
|
targetSdk = AppConfig.targetSdkVersion
|
|
}
|
|
|
|
kotlinOptions {
|
|
jvmTarget = JavaVersion.VERSION_1_8.toString()
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
|
isCoreLibraryDesugaringEnabled = false
|
|
}
|
|
|
|
buildFeatures {
|
|
compose = true
|
|
}
|
|
|
|
composeOptions {
|
|
kotlinCompilerExtensionVersion = Versions.compose
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
/** Core modules */
|
|
implementation(project(":core:ui"))
|
|
|
|
/** AndroidX */
|
|
implementation(AndroidX.appCompat)
|
|
|
|
/** Compose */
|
|
implementation(Compose.foundation)
|
|
implementation(Compose.material)
|
|
implementation(Compose.uiTooling)
|
|
|
|
/** Domain */
|
|
implementation(project(":features:referral:domain"))
|
|
|
|
/** Other libraries */
|
|
implementation(Library.composeShimmer)
|
|
|
|
/** DI */
|
|
implementation(Library.hilt)
|
|
kapt(Library.hiltKapt)
|
|
} |