2023-12-16 07:02:39 +00:00
|
|
|
plugins {
|
|
|
|
alias(libs.plugins.com.android.library)
|
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
|
|
|
namespace 'one.nem.lacerta.processor'
|
|
|
|
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
|
2023-12-21 03:42:50 +00:00
|
|
|
|
2023-12-21 05:31:04 +00:00
|
|
|
// DI
|
|
|
|
implementation libs.com.google.dagger.hilt.android
|
|
|
|
annotationProcessor libs.com.google.dagger.hilt.compiler
|
|
|
|
|
2023-12-21 05:29:53 +00:00
|
|
|
// JGit
|
|
|
|
implementation 'org.eclipse.jgit:org.eclipse.jgit:6.8.0.202311291450-r'
|
|
|
|
|
2023-12-21 03:42:50 +00:00
|
|
|
implementation project(':model')
|
|
|
|
implementation project(':source')
|
|
|
|
implementation project(':utils')
|
|
|
|
implementation project(':data')
|
2023-12-16 07:02:39 +00:00
|
|
|
}
|