mirror of
https://github.com/LiveFastEatTrashRaccoon/RaccoonForLemmy.git
synced 2025-02-03 16:37:32 +01:00
53 lines
1.1 KiB
Plaintext
53 lines
1.1 KiB
Plaintext
plugins {
|
|
alias(libs.plugins.kotlin.multiplatform)
|
|
alias(libs.plugins.android.library)
|
|
alias(libs.plugins.native.cocoapods)
|
|
}
|
|
|
|
@OptIn(org.jetbrains.kotlin.gradle.ExperimentalKotlinGradlePluginApi::class)
|
|
kotlin {
|
|
targetHierarchy.default()
|
|
|
|
android {
|
|
compilations.all {
|
|
kotlinOptions {
|
|
jvmTarget = "1.8"
|
|
}
|
|
}
|
|
}
|
|
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-lemmy"
|
|
}
|
|
}
|
|
|
|
sourceSets {
|
|
val commonMain by getting {
|
|
dependencies {
|
|
// put your multiplatform dependencies here
|
|
}
|
|
}
|
|
val commonTest by getting {
|
|
dependencies {
|
|
implementation(kotlin("test"))
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
android {
|
|
namespace = "com.github.diegoberaldin.racconforlemmy.domain.lemmy"
|
|
compileSdk = 33
|
|
defaultConfig {
|
|
minSdk = 26
|
|
}
|
|
}
|