2023-12-10 09:02:53 +00:00
|
|
|
plugins {
|
|
|
|
alias(libs.plugins.com.android.library)
|
2023-12-10 09:05:41 +00:00
|
|
|
id 'com.google.dagger.hilt.android'
|
2023-12-10 09:02:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
2023-12-10 09:27:14 +00:00
|
|
|
namespace 'one.nem.lacerta.data'
|
2023-12-10 09:02:53 +00:00
|
|
|
compileSdk 34
|
|
|
|
|
|
|
|
defaultConfig {
|
2023-12-12 01:21:00 +00:00
|
|
|
minSdk 26
|
2023-12-10 09:02:53 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
testImplementation libs.junit
|
|
|
|
androidTestImplementation libs.androidx.test.ext.junit
|
|
|
|
androidTestImplementation libs.androidx.test.espresso.core
|
2023-12-10 09:05:41 +00:00
|
|
|
|
|
|
|
// Hilt (DI)
|
|
|
|
implementation libs.com.google.dagger.hilt.android
|
|
|
|
annotationProcessor libs.com.google.dagger.hilt.compiler
|
2023-12-11 01:27:29 +00:00
|
|
|
|
2023-12-12 03:08:26 +00:00
|
|
|
// JGit
|
|
|
|
implementation 'org.eclipse.jgit:org.eclipse.jgit:6.8.0.202311291450-r'
|
2023-12-11 07:04:25 +00:00
|
|
|
|
2024-01-12 01:32:33 +00:00
|
|
|
// Java Faker
|
|
|
|
implementation 'com.github.javafaker:javafaker:1.0.2'
|
|
|
|
|
2023-12-11 07:04:25 +00:00
|
|
|
// Room
|
|
|
|
implementation libs.androidx.room.runtime
|
|
|
|
annotationProcessor libs.androidx.room.compiler
|
2023-12-12 02:26:10 +00:00
|
|
|
|
2023-12-14 01:45:10 +00:00
|
|
|
// Utilsモジュール
|
2023-12-12 02:26:10 +00:00
|
|
|
implementation project(':utils')
|
2023-12-14 01:40:10 +00:00
|
|
|
|
2023-12-14 01:45:10 +00:00
|
|
|
// 型モジュール
|
2023-12-14 01:40:10 +00:00
|
|
|
implementation project(':model')
|
2023-12-14 01:45:32 +00:00
|
|
|
|
|
|
|
// データソースモジュール
|
|
|
|
implementation project(':source')
|
2024-01-14 08:08:22 +00:00
|
|
|
|
|
|
|
implementation project(':vcs')
|
2023-12-10 09:02:53 +00:00
|
|
|
}
|