2023-12-08 02:17:09 +00:00
|
|
|
plugins {
|
|
|
|
alias(libs.plugins.com.android.library)
|
2024-01-21 06:18:21 +00:00
|
|
|
id 'com.google.dagger.hilt.android'
|
2023-12-08 02:17:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
|
|
|
namespace 'one.nem.lacerta.component.viewer'
|
2024-01-21 10:48:30 +00:00
|
|
|
compileSdk 34
|
2023-12-08 02:17:09 +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 {
|
|
|
|
|
|
|
|
implementation libs.androidx.appcompat
|
|
|
|
implementation libs.com.google.android.material
|
2024-01-20 08:06:28 +00:00
|
|
|
implementation libs.androidx.activity
|
|
|
|
implementation libs.androidx.constraintlayout
|
2023-12-08 02:17:09 +00:00
|
|
|
testImplementation libs.junit
|
|
|
|
androidTestImplementation libs.androidx.test.ext.junit
|
|
|
|
androidTestImplementation libs.androidx.test.espresso.core
|
2024-01-20 08:11:44 +00:00
|
|
|
|
|
|
|
// Navigation
|
|
|
|
implementation libs.navigation.fragment
|
|
|
|
implementation libs.navigation.ui
|
|
|
|
implementation libs.navigation.dynamic.features.fragment
|
|
|
|
|
|
|
|
// DI
|
|
|
|
implementation libs.com.google.dagger.hilt.android
|
|
|
|
annotationProcessor libs.com.google.dagger.hilt.compiler
|
|
|
|
|
|
|
|
// shared
|
|
|
|
implementation project(':shared:ui')
|
|
|
|
|
2024-01-20 08:19:50 +00:00
|
|
|
implementation project(':utils')
|
|
|
|
|
2024-01-20 08:29:24 +00:00
|
|
|
implementation project(':data')
|
|
|
|
|
|
|
|
implementation project(':model')
|
|
|
|
|
2024-01-22 16:28:22 +00:00
|
|
|
implementation project(':vcs')
|
|
|
|
|
2024-01-25 03:20:44 +00:00
|
|
|
implementation project(':component:common')
|
|
|
|
|
2024-01-26 08:55:18 +00:00
|
|
|
// TODO-rca: バージョンカタログに切り出す
|
2024-01-26 09:00:46 +00:00
|
|
|
implementation "com.hendraanggrian.material:collapsingtoolbarlayout-subtitle:1.5.0"
|
2024-01-26 08:55:18 +00:00
|
|
|
|
2023-12-08 02:17:09 +00:00
|
|
|
}
|