2025-11-18 05:30:49 +00:00
|
|
|
apply from: "${project.rootDir}/core.build.gradle"
|
|
|
|
|
|
|
|
|
|
android {
|
|
|
|
|
namespace = "com.ama.core.architecture.reflect"
|
2026-01-09 09:09:03 +00:00
|
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
|
debug {
|
|
|
|
|
minifyEnabled false
|
|
|
|
|
zipAlignEnabled true
|
|
|
|
|
}
|
|
|
|
|
release {
|
|
|
|
|
minifyEnabled false
|
|
|
|
|
zipAlignEnabled true
|
|
|
|
|
}
|
|
|
|
|
}
|
2025-11-18 05:30:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
|
implementation(libs.kotlin.reflect)
|
2026-01-09 08:59:08 +00:00
|
|
|
implementation(project(":core:architecture"))
|
2025-11-18 05:30:49 +00:00
|
|
|
}
|