2025-11-18 05:30:49 +00:00
|
|
|
apply from: "${project.rootDir}/core.build.gradle"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
android {
|
|
|
|
|
namespace = "com.ama.core.architecture"
|
|
|
|
|
buildFeatures {
|
|
|
|
|
viewBinding = true
|
|
|
|
|
}
|
2026-01-09 08:59:08 +00:00
|
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
|
debug {
|
|
|
|
|
minifyEnabled false
|
|
|
|
|
zipAlignEnabled true
|
|
|
|
|
}
|
|
|
|
|
release {
|
|
|
|
|
minifyEnabled false
|
|
|
|
|
zipAlignEnabled true
|
|
|
|
|
}
|
|
|
|
|
}
|
2025-11-18 05:30:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2026-01-09 08:59:08 +00:00
|
|
|
|
|
|
|
|
|
2025-11-18 05:30:49 +00:00
|
|
|
dependencies {
|
|
|
|
|
api(project(":core:common"))
|
|
|
|
|
api(project(":core:designsystem"))
|
|
|
|
|
api(project(":core:model"))
|
|
|
|
|
api(libs.material)
|
|
|
|
|
api(libs.appcompat)
|
2026-01-09 08:59:08 +00:00
|
|
|
implementation(libs.lifecycle.viewmodel.ktx)
|
|
|
|
|
implementation(libs.fragment.ktx)
|
|
|
|
|
implementation(libs.retrofit.kotlin.serialization)
|
|
|
|
|
implementation(libs.baseAdapter)
|
2025-11-18 05:30:49 +00:00
|
|
|
api(libs.magicIndicator)
|
2026-01-09 08:59:08 +00:00
|
|
|
implementation(libs.glide)
|
|
|
|
|
implementation(libs.okhttp.logging)
|
|
|
|
|
implementation(libs.kotlinx.serialization.json)
|
|
|
|
|
implementation(libs.gson)
|
2025-11-18 05:30:49 +00:00
|
|
|
implementation(libs.startup)
|
|
|
|
|
implementation 'org.jetbrains.kotlin:kotlin-stdlib:1.8.22'
|
2025-11-21 03:00:15 +00:00
|
|
|
api 'io.github.pengxurui:modular-eventbus-api:1.0.5'
|
|
|
|
|
api 'io.github.pengxurui:modular-eventbus-compiler:1.0.5'
|
2025-12-17 10:36:21 +00:00
|
|
|
implementation project(':bill')
|
2025-12-31 09:16:09 +00:00
|
|
|
api 'com.google.android.gms:play-services-ads-identifier:18.0.1'
|
2025-11-18 05:30:49 +00:00
|
|
|
}
|