mirror of
https://github.com/michaldrabik/showly.git
synced 2025-08-06 19:19:41 +08:00
54 lines
1.2 KiB
Groovy
54 lines
1.2 KiB
Groovy
apply plugin: 'com.android.library'
|
|
apply plugin: 'kotlin-android'
|
|
apply plugin: 'kotlin-parcelize'
|
|
apply plugin: 'dagger.hilt.android.plugin'
|
|
apply from: '../versions.gradle'
|
|
|
|
android {
|
|
kotlinOptions { jvmTarget = "21" }
|
|
compileOptions {
|
|
coreLibraryDesugaringEnabled true
|
|
sourceCompatibility JavaVersion.VERSION_21
|
|
targetCompatibility JavaVersion.VERSION_21
|
|
}
|
|
|
|
buildFeatures {
|
|
viewBinding true
|
|
}
|
|
|
|
compileSdkVersion versions.compileSdk
|
|
|
|
defaultConfig {
|
|
minSdkVersion versions.minSdk
|
|
targetSdkVersion versions.targetSdk
|
|
compileSdkVersion versions.compileSdk
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
}
|
|
}
|
|
|
|
namespace 'com.michaldrabik.ui_people'
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':common')
|
|
implementation project(':data-local')
|
|
implementation project(':data-remote')
|
|
implementation project(':ui-base')
|
|
implementation project(':ui-navigation')
|
|
implementation project(':ui-model')
|
|
implementation project(':repository')
|
|
|
|
implementation libs.hilt.android
|
|
ksp libs.hilt.compiler
|
|
|
|
implementation libs.circleIndicator
|
|
|
|
coreLibraryDesugaring libs.android.desugar
|
|
}
|