Files
2026-07-03 15:56:07 +08:00

30 lines
837 B
Kotlin

plugins {
id("com.android.application")
kotlin("android")
}
apply(from = rootProject.file("gradle/configure-android.gradle"))
apply(from = rootProject.file("gradle/configure-compose.gradle"))
dependencies {
implementation(Kotlin.stdLib)
implementation(Android.appcompat)
implementation(Android.activityCompose)
implementation(Compose.core)
implementation(Compose.layout)
implementation(Compose.material)
implementation(Compose.materialIconsExt)
implementation(Compose.foundation)
implementation(Compose.runtime)
// Previews weren't working when using debugImplementation
implementation(Compose.tooling)
implementation(project(":lib:pie"))
implementation(project(":lib:bar"))
implementation(project(":lib:line"))
}
android {
namespace = "com.github.tehras.charts"
}