forked from xueque/eimusic-app
42 lines
899 B
Plaintext
42 lines
899 B
Plaintext
plugins {
|
|
kotlin("multiplatform")
|
|
id("org.jetbrains.compose")
|
|
id("com.android.library")
|
|
id("maven-publish")
|
|
}
|
|
|
|
group = "com.konyaco"
|
|
version = "0.0.1-dev4"
|
|
|
|
kotlin {
|
|
jvm()
|
|
android()
|
|
sourceSets {
|
|
val commonMain by getting {
|
|
dependencies {
|
|
implementation(compose.foundation)
|
|
}
|
|
}
|
|
val jvmMain by getting {
|
|
dependencies {
|
|
implementation(compose.desktop.currentOs)
|
|
}
|
|
}
|
|
val jvmTest by getting
|
|
}
|
|
}
|
|
|
|
android {
|
|
compileSdk = 33
|
|
namespace = "com.konyaco.fluent.icons"
|
|
sourceSets["main"].manifest.srcFile("src/androidMain/AndroidManifest.xml")
|
|
defaultConfig {
|
|
minSdk = 24
|
|
targetSdk = 33
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility = JavaVersion.VERSION_11
|
|
targetCompatibility = JavaVersion.VERSION_11
|
|
}
|
|
}
|