Skip to content

Commit

Permalink
implement kotlin multiplatform plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
dsvag committed Dec 7, 2023
1 parent c56a35c commit 689f404
Showing 1 changed file with 22 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
@file:Suppress("UnstableApiUsage")

plugins {
kotlin("multiplatform")
id("com.android.library")
id("elmslie.detekt")
}

kotlin {
applyDefaultHierarchyTemplate()

androidTarget {
compilations.all {
kotlinOptions {
jvmTarget = JvmTarget.toString()
}
}
}

iosX64()
iosArm64()
}

0 comments on commit 689f404

Please sign in to comment.