2023-12-07 05:21:21 +00:00
|
|
|
plugins {
|
2023-12-19 03:56:31 +00:00
|
|
|
id 'com.google.dagger.hilt.android'
|
2023-12-07 05:21:21 +00:00
|
|
|
id 'com.android.library'
|
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
|
|
|
namespace 'one.nem.lacerta.feature.home'
|
2024-01-21 10:48:30 +00:00
|
|
|
compileSdk 34
|
2023-12-07 05:21:21 +00:00
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
minSdk 26
|
|
|
|
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
|
|
consumerProguardFiles "consumer-rules.pro"
|
|
|
|
}
|
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
|
2023-12-18 01:34:59 +00:00
|
|
|
implementation libs.androidx.appcompat
|
|
|
|
implementation libs.com.google.android.material
|
2024-01-17 03:35:30 +00:00
|
|
|
implementation project(path: ':feature:debug')
|
|
|
|
implementation project(path: ':utils')
|
2023-12-18 01:34:59 +00:00
|
|
|
testImplementation libs.junit
|
|
|
|
androidTestImplementation libs.androidx.test.ext.junit
|
|
|
|
androidTestImplementation libs.androidx.test.espresso.core
|
|
|
|
|
|
|
|
// Navigation
|
|
|
|
implementation libs.navigation.fragment
|
|
|
|
implementation libs.navigation.ui
|
|
|
|
implementation libs.navigation.dynamic.features.fragment
|
2023-12-18 01:58:11 +00:00
|
|
|
|
2023-12-18 06:16:57 +00:00
|
|
|
// DI
|
|
|
|
implementation libs.com.google.dagger.hilt.android
|
|
|
|
annotationProcessor libs.com.google.dagger.hilt.compiler
|
|
|
|
|
2023-12-18 01:58:11 +00:00
|
|
|
// shared
|
|
|
|
implementation project(':shared:ui')
|
2023-12-19 01:34:31 +00:00
|
|
|
|
|
|
|
// DI
|
|
|
|
implementation project(':data')
|
2023-12-19 01:36:27 +00:00
|
|
|
|
|
|
|
//model
|
|
|
|
implementation project(':model')
|
2023-12-19 03:56:31 +00:00
|
|
|
|
|
|
|
implementation "androidx.recyclerview:recyclerview:1.3.2"
|
2024-01-19 09:23:08 +00:00
|
|
|
|
|
|
|
implementation project(':component:common')
|
2024-01-20 08:45:42 +00:00
|
|
|
|
|
|
|
implementation project(':component:viewer')
|
2023-12-07 05:21:21 +00:00
|
|
|
}
|