mirror of
https://github.com/LiveFastEatTrashRaccoon/RaccoonForLemmy.git
synced 2025-02-10 04:10:43 +01:00
51 lines
1.1 KiB
Plaintext
51 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 = "data"
|
||
|
}
|
||
|
}
|
||
|
|
||
|
sourceSets {
|
||
|
val commonMain by getting {
|
||
|
dependencies {
|
||
|
}
|
||
|
}
|
||
|
val commonTest by getting {
|
||
|
dependencies {
|
||
|
implementation(kotlin("test"))
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
android {
|
||
|
namespace = "com.github.diegoberaldin.raccoonforlemmy.data"
|
||
|
compileSdk = 33
|
||
|
defaultConfig {
|
||
|
minSdk = 26
|
||
|
}
|
||
|
}
|