2023-12-09 00:55:49 +00:00
|
|
|
plugins {
|
|
|
|
alias(libs.plugins.com.android.library)
|
2023-12-10 08:49:08 +00:00
|
|
|
id 'com.google.dagger.hilt.android'
|
2023-12-09 00:55:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
|
|
|
namespace 'one.nem.lacerta.feature.debug'
|
2023-12-14 03:06:21 +00:00
|
|
|
compileSdk 34
|
2023-12-09 00:55:49 +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
|
2023-12-11 02:47:01 +00:00
|
|
|
implementation libs.androidx.activity
|
|
|
|
implementation libs.androidx.constraintlayout
|
2023-12-09 00:55:49 +00:00
|
|
|
testImplementation libs.junit
|
|
|
|
androidTestImplementation libs.androidx.test.ext.junit
|
|
|
|
androidTestImplementation libs.androidx.test.espresso.core
|
2023-12-09 01:08:07 +00:00
|
|
|
|
|
|
|
// Navigation
|
|
|
|
implementation libs.navigation.fragment
|
|
|
|
implementation libs.navigation.ui
|
|
|
|
implementation libs.navigation.dynamic.features.fragment
|
|
|
|
|
2023-12-10 08:22:31 +00:00
|
|
|
// Hilt (DI)
|
|
|
|
implementation libs.com.google.dagger.hilt.android
|
|
|
|
annotationProcessor libs.com.google.dagger.hilt.compiler
|
|
|
|
|
2023-12-12 03:08:26 +00:00
|
|
|
// JGit
|
|
|
|
implementation 'org.eclipse.jgit:org.eclipse.jgit:6.8.0.202311291450-r'
|
2023-12-12 02:48:11 +00:00
|
|
|
|
2023-12-10 08:23:27 +00:00
|
|
|
// 内部モジュール
|
|
|
|
// data
|
2023-12-10 09:03:34 +00:00
|
|
|
implementation project(':data')
|
2023-12-10 08:23:27 +00:00
|
|
|
|
2023-12-13 18:21:22 +00:00
|
|
|
// Debug
|
|
|
|
implementation project(':source')
|
|
|
|
implementation project(':utils')
|
|
|
|
|
2023-12-14 02:59:57 +00:00
|
|
|
// 型
|
|
|
|
implementation project(':model')
|
2023-12-10 08:23:27 +00:00
|
|
|
|
2023-12-17 03:16:22 +00:00
|
|
|
// Shared
|
|
|
|
implementation project(':shared:ui')
|
|
|
|
|
2023-12-20 03:02:53 +00:00
|
|
|
// Scanner
|
|
|
|
implementation project(':component:scanner')
|
|
|
|
|
2024-01-07 07:23:33 +00:00
|
|
|
// Processor
|
|
|
|
implementation project(':processor')
|
|
|
|
|
2024-01-14 04:59:53 +00:00
|
|
|
// LacertaVcs
|
|
|
|
implementation project(':vcs')
|
|
|
|
|
2023-12-09 00:55:49 +00:00
|
|
|
}
|