KidShift/feature/common/build.gradle

51 lines
1.3 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 {
2024-07-07 04:51:19 +00:00
minSdk 28
2024-07-06 04:43:52 +00:00
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
2024-07-06 07:33:32 +00:00
implementation libs.navigation.fragment
implementation libs.navigation.ui
2024-07-06 04:43:52 +00:00
testImplementation libs.junit
androidTestImplementation libs.ext.junit
androidTestImplementation libs.espresso.core
2024-07-06 07:19:17 +00:00
implementation libs.androidx.swiperefreshlayout
2024-07-06 05:46:26 +00:00
// Hilt (DI)
implementation libs.com.google.dagger.hilt.android
annotationProcessor libs.com.google.dagger.hilt.compiler
2024-07-07 04:51:19 +00:00
implementation 'one.nem:compact-calendar-view:1.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
}