This commit is contained in:
coco
2026-07-03 15:56:07 +08:00
commit caef23209c
5767 changed files with 1004268 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
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"
}