KidShift/app/build.gradle

69 lines
1.8 KiB
Groovy
Raw Normal View History

2024-06-05 05:36:41 +00:00
plugins {
alias(libs.plugins.androidApplication)
2024-06-06 07:15:49 +00:00
id 'com.google.dagger.hilt.android'
2024-06-05 05:36:41 +00:00
}
android {
namespace 'one.nem.kidshift'
compileSdk 34
defaultConfig {
applicationId "one.nem.kidshift"
minSdk 28
targetSdk 34
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
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
implementation libs.activity
implementation libs.constraintlayout
2024-07-05 01:33:56 +00:00
implementation project(':model')
2024-06-05 05:36:41 +00:00
testImplementation libs.junit
androidTestImplementation libs.ext.junit
androidTestImplementation libs.espresso.core
2024-06-05 05:59:49 +00:00
2024-06-05 06:59:50 +00:00
// Module
implementation project(':feature:debug')
2024-06-06 05:41:53 +00:00
implementation project(':feature:parent')
implementation project(':feature:child')
2024-06-14 01:22:38 +00:00
implementation project(':feature:setting')
2024-07-06 05:58:53 +00:00
implementation project(':feature:common')
2024-07-08 03:01:15 +00:00
implementation project(':feature:wallet')
2024-06-05 06:59:50 +00:00
2024-06-22 06:26:51 +00:00
implementation project(':data')
2024-06-07 03:07:36 +00:00
implementation project(':shared')
2024-06-11 08:21:46 +00:00
implementation project(':utils')
2024-06-07 03:07:36 +00:00
2024-06-05 05:59:49 +00:00
// Hilt (DI)
implementation libs.com.google.dagger.hilt.android
annotationProcessor libs.com.google.dagger.hilt.compiler
// Navigation
implementation libs.navigation.fragment
implementation libs.navigation.ui
implementation libs.navigation.dynamic.features.fragment
2024-06-22 06:36:46 +00:00
// Retrofit
implementation libs.retrofit
2024-06-22 06:38:22 +00:00
implementation libs.converter.gson
2024-06-05 05:36:41 +00:00
}