Lacerta/vcs/build.gradle

60 lines
1.8 KiB
Groovy
Raw Permalink Normal View History

2024-01-13 06:33:54 +00:00
plugins {
alias(libs.plugins.com.android.library)
2024-01-14 08:35:17 +00:00
id 'com.google.dagger.hilt.android'
2024-01-13 06:33:54 +00:00
}
android {
namespace 'one.nem.lacerta.vcs'
compileSdk 34
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
testImplementation libs.junit
androidTestImplementation libs.androidx.test.ext.junit
androidTestImplementation libs.androidx.test.espresso.core
2024-01-13 06:34:43 +00:00
// Hilt (DI)
implementation libs.com.google.dagger.hilt.android
annotationProcessor libs.com.google.dagger.hilt.compiler
implementation project(':model')
2024-01-13 06:37:08 +00:00
implementation project(':source')
implementation project(':utils')
2024-01-14 03:08:46 +00:00
// Jackson
// TODO-rca: バージョンカタログにうつす
// https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-core
implementation 'com.fasterxml.jackson.core:jackson-core:2.16.1'
// https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind
implementation 'com.fasterxml.jackson.core:jackson-databind:2.16.1'
// https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-annotations
implementation 'com.fasterxml.jackson.core:jackson-annotations:2.16.1'
2024-01-14 04:26:59 +00:00
// Room
implementation libs.androidx.room.runtime
annotationProcessor libs.androidx.room.compiler
2024-01-13 06:33:54 +00:00
}