VidiDin-Android/core/designsystem/build.gradle

21 lines
414 B
Groovy
Raw Permalink Normal View History

2025-11-18 05:30:49 +00:00
apply from: "${project.rootDir}/core.build.gradle"
android {
namespace = "com.ama.core.designsystem"
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.activity.ktx
2026-01-09 08:22:29 +00:00
implementation(project(":core:common"))
2025-11-18 05:30:49 +00:00
}