KidShift/feature/common/build.gradle

48 lines
1.2 KiB
Groovy
Raw Normal View History

2024-07-06 04:43:52 +00:00
plugins {
alias(libs.plugins.androidLibrary)
2024-07-06 05:46:26 +00:00
id 'com.google.dagger.hilt.android'
2024-07-06 04:43:52 +00:00
}
android {
namespace 'one.nem.kidshift.feature.common'
compileSdk 34
defaultConfig {
minSdk 24
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-07-06 05:46:26 +00:00
// Hilt (DI)
implementation libs.com.google.dagger.hilt.android
annotationProcessor libs.com.google.dagger.hilt.compiler
api 'com.github.sundeepk:compact-calendar-view:3.0.0'
2024-07-06 05:46:26 +00:00
// Project modules
implementation project(':model')
implementation project(':utils')
implementation project(':data')
2024-07-06 05:58:53 +00:00
implementation project(':shared')
2024-07-06 04:43:52 +00:00
}