Lacerta/data/build.gradle

59 lines
1.5 KiB
Groovy
Raw Normal View History

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 {
namespace 'one.nem.lacerta.data'
2023-12-10 09:02:53 +00:00
compileSdk 34
defaultConfig {
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
// JGit
implementation 'org.eclipse.jgit:org.eclipse.jgit:6.8.0.202311291450-r'
2024-01-12 01:32:33 +00:00
// Java Faker
implementation 'com.github.javafaker:javafaker:1.0.2'
// 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')
// データソースモジュール
implementation project(':source')
2023-12-10 09:02:53 +00:00
}