Files
eimusic-app/fluent-icons-core/build.gradle.kts
NianChen e5873ae6fe init
2023-04-13 18:06:05 +08:00

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
}
}