24 lines
618 B
Kotlin
24 lines
618 B
Kotlin
plugins {
|
|
id("com.android.library")
|
|
kotlin("android")
|
|
`maven-publish`
|
|
}
|
|
|
|
apply(from = rootProject.file("gradle/configure-android.gradle"))
|
|
apply(from = rootProject.file("gradle/configure-compose.gradle"))
|
|
apply(from = rootProject.file("gradle/jitpack-publish.gradle"))
|
|
|
|
dependencies {
|
|
implementation(Kotlin.stdLib)
|
|
|
|
implementation(Compose.animation)
|
|
implementation(Compose.core)
|
|
implementation(Compose.layout)
|
|
implementation(Compose.foundation)
|
|
implementation(Compose.runtime)
|
|
debugImplementation(Compose.tooling)
|
|
}
|
|
android {
|
|
namespace = "com.github.tehras.charts.common"
|
|
}
|