Raccoon/domain-identity/build.gradle.kts

58 lines
1.4 KiB
Plaintext
Raw Normal View History

2023-07-28 23:59:08 +02:00
plugins {
alias(libs.plugins.kotlin.multiplatform)
alias(libs.plugins.android.library)
alias(libs.plugins.compose)
alias(libs.plugins.native.cocoapods)
}
@OptIn(org.jetbrains.kotlin.gradle.ExperimentalKotlinGradlePluginApi::class)
kotlin {
targetHierarchy.default()
android {
compilations.all {
kotlinOptions {
2023-07-31 22:58:34 +02:00
jvmTarget = "17"
2023-07-28 23:59:08 +02:00
}
}
}
iosX64()
iosArm64()
iosSimulatorArm64()
cocoapods {
summary = "Some description for the Shared Module"
homepage = "Link to the Shared Module homepage"
version = "1.0"
ios.deploymentTarget = "14.1"
framework {
baseName = "domain-identity"
}
}
sourceSets {
val commonMain by getting {
dependencies {
implementation(libs.koin.core)
implementation(compose.foundation)
implementation(projects.corePreferences)
implementation(projects.coreApi)
implementation(projects.coreUtils)
}
}
val commonTest by getting {
dependencies {
implementation(kotlin("test"))
}
}
}
}
android {
namespace = "com.github.diegoberaldin.raccoonforlemmy.domain.identity"
2023-07-28 23:59:08 +02:00
compileSdk = 33
defaultConfig {
minSdk = 26
}
}