mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-22 07:53:15 +00:00
42 lines
1.0 KiB
Groovy
42 lines
1.0 KiB
Groovy
plugins {
|
|
alias(libs.plugins.com.android.library)
|
|
}
|
|
|
|
android {
|
|
namespace 'oen.nem.lacerta.utils'
|
|
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
|
|
|
|
// Hilt
|
|
implementation libs.com.google.dagger.hilt.android
|
|
annotationProcessor libs.com.google.dagger.hilt.compiler
|
|
|
|
// model
|
|
implementation project(':model')
|
|
} |