mirror of
https://github.com/fankes/pagecurl-multiplatform.git
synced 2025-09-05 18:25:20 +08:00
33 lines
749 B
Plaintext
33 lines
749 B
Plaintext
plugins {
|
|
alias(libs.plugins.android.library)
|
|
alias(libs.plugins.kotlin)
|
|
alias(libs.plugins.mavenpublish)
|
|
id("convention.jvm.toolchain")
|
|
}
|
|
|
|
android {
|
|
namespace = "eu.wewox.pagecurl"
|
|
|
|
compileSdk = libs.versions.sdk.compile.get().toInt()
|
|
|
|
defaultConfig {
|
|
minSdk = libs.versions.sdk.min.get().toInt()
|
|
}
|
|
buildFeatures {
|
|
compose = true
|
|
}
|
|
composeOptions {
|
|
kotlinCompilerExtensionVersion = libs.versions.compose.compiler.get()
|
|
}
|
|
kotlinOptions {
|
|
freeCompilerArgs = freeCompilerArgs +
|
|
"-Xexplicit-api=strict"
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation(platform(libs.compose.bom))
|
|
implementation(libs.compose.foundation)
|
|
implementation(libs.compose.ui)
|
|
}
|