32 lines
625 B
Kotlin
32 lines
625 B
Kotlin
import org.jetbrains.compose.compose
|
|
|
|
plugins {
|
|
id("me.saket.android.library")
|
|
id("me.saket.android.library.publishing")
|
|
id("me.saket.kotlin.multiplatform")
|
|
}
|
|
apply(plugin = "kotlin-parcelize")
|
|
apply(plugin = "app.cash.paparazzi")
|
|
|
|
kotlin {
|
|
sourceSets {
|
|
named("commonMain") {
|
|
dependencies {
|
|
implementation(compose("org.jetbrains.compose.ui:ui-util"))
|
|
api(compose.foundation)
|
|
api(libs.androidx.annotation)
|
|
}
|
|
}
|
|
|
|
named("commonTest") {
|
|
dependencies {
|
|
implementation(kotlin("test"))
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
android {
|
|
namespace = "me.saket.telephoto.zoomable"
|
|
}
|