KidShift/utils/build.gradle

45 lines
1.1 KiB
Groovy
Raw Normal View History

2024-06-06 07:34:09 +00:00
plugins {
alias(libs.plugins.androidLibrary)
2024-06-06 08:58:06 +00:00
id 'com.google.dagger.hilt.android'
2024-06-06 07:34:09 +00:00
}
android {
namespace 'one.nem.kidshift.utils'
compileSdk 34
defaultConfig {
minSdk 28
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.appcompat
implementation libs.material
testImplementation libs.junit
androidTestImplementation libs.ext.junit
androidTestImplementation libs.espresso.core
2024-06-06 08:58:06 +00:00
// Hilt (DI)
implementation libs.com.google.dagger.hilt.android
annotationProcessor libs.com.google.dagger.hilt.compiler
2024-06-12 05:10:32 +00:00
2024-07-09 02:25:27 +00:00
implementation 'jp.wasabeef:recyclerview-animators:4.0.2'
2024-06-12 05:10:32 +00:00
// Gson
2024-06-12 05:10:44 +00:00
implementation libs.gson
2024-06-06 07:34:09 +00:00
}