KidShift/data/build.gradle

54 lines
1.3 KiB
Groovy
Raw Normal View History

2024-06-07 01:36:17 +00:00
plugins {
alias(libs.plugins.androidLibrary)
2024-06-07 02:14:13 +00:00
id 'com.google.dagger.hilt.android'
2024-06-07 01:36:17 +00:00
}
android {
namespace 'one.nem.kidshift.data'
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-07 02:14:13 +00:00
// Hilt (DI)
implementation libs.com.google.dagger.hilt.android
annotationProcessor libs.com.google.dagger.hilt.compiler
2024-06-07 02:34:29 +00:00
// Java Faker
implementation libs.javafaker
2024-06-07 02:39:40 +00:00
implementation project(':model')
implementation project(':utils')
2024-06-22 06:42:45 +00:00
// Retrofit
implementation libs.retrofit
implementation libs.converter.gson
2024-06-22 15:35:59 +00:00
// Room
implementation libs.androidx.room.runtime
annotationProcessor libs.androidx.room.compiler
2024-06-07 01:36:17 +00:00
}