kmp init
This commit is contained in:
69
client/composeApp/build.gradle.kts
Normal file
69
client/composeApp/build.gradle.kts
Normal file
@ -0,0 +1,69 @@
|
||||
import org.jetbrains.compose.desktop.application.dsl.TargetFormat
|
||||
import org.jetbrains.kotlin.gradle.ExperimentalWasmDsl
|
||||
import org.jetbrains.kotlin.gradle.targets.js.webpack.KotlinWebpackConfig
|
||||
|
||||
plugins {
|
||||
alias(libs.plugins.kotlinMultiplatform)
|
||||
alias(libs.plugins.composeMultiplatform)
|
||||
alias(libs.plugins.composeCompiler)
|
||||
alias(libs.plugins.composeHotReload)
|
||||
}
|
||||
|
||||
kotlin {
|
||||
jvm("desktop")
|
||||
|
||||
@OptIn(ExperimentalWasmDsl::class)
|
||||
wasmJs {
|
||||
outputModuleName.set("composeApp")
|
||||
browser {
|
||||
val rootDirPath = project.rootDir.path
|
||||
val projectDirPath = project.projectDir.path
|
||||
commonWebpackConfig {
|
||||
outputFileName = "composeApp.js"
|
||||
devServer = (devServer ?: KotlinWebpackConfig.DevServer()).apply {
|
||||
static = (static ?: mutableListOf()).apply {
|
||||
// Serve sources to debug inside browser
|
||||
add(rootDirPath)
|
||||
add(projectDirPath)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
binaries.executable()
|
||||
}
|
||||
|
||||
sourceSets {
|
||||
val desktopMain by getting
|
||||
|
||||
commonMain.dependencies {
|
||||
implementation(compose.runtime)
|
||||
implementation(compose.foundation)
|
||||
implementation(compose.material3)
|
||||
implementation(compose.ui)
|
||||
implementation(compose.components.resources)
|
||||
implementation(compose.components.uiToolingPreview)
|
||||
implementation(libs.androidx.lifecycle.viewmodel)
|
||||
implementation(libs.androidx.lifecycle.runtimeCompose)
|
||||
}
|
||||
commonTest.dependencies {
|
||||
implementation(libs.kotlin.test)
|
||||
}
|
||||
desktopMain.dependencies {
|
||||
implementation(compose.desktop.currentOs)
|
||||
implementation(libs.kotlinx.coroutinesSwing)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
compose.desktop {
|
||||
application {
|
||||
mainClass = "su.sonoma.sclient.MainKt"
|
||||
|
||||
nativeDistributions {
|
||||
targetFormats(TargetFormat.Dmg, TargetFormat.Msi, TargetFormat.Deb)
|
||||
packageName = "su.sonoma.sclient"
|
||||
packageVersion = "1.0.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,23 @@
|
||||
@file:OptIn(InternalResourceApi::class)
|
||||
|
||||
package sclient.composeapp.generated.resources
|
||||
|
||||
import kotlin.OptIn
|
||||
import kotlin.String
|
||||
import kotlin.collections.MutableMap
|
||||
import org.jetbrains.compose.resources.DrawableResource
|
||||
import org.jetbrains.compose.resources.InternalResourceApi
|
||||
import org.jetbrains.compose.resources.ResourceItem
|
||||
|
||||
private const val MD: String = "composeResources/sclient.composeapp.generated.resources/"
|
||||
|
||||
internal val Res.drawable.compose_multiplatform: DrawableResource by lazy {
|
||||
DrawableResource("drawable:compose_multiplatform", setOf(
|
||||
ResourceItem(setOf(), "${MD}drawable/compose-multiplatform.xml", -1, -1),
|
||||
))
|
||||
}
|
||||
|
||||
@InternalResourceApi
|
||||
internal fun _collectCommonMainDrawable0Resources(map: MutableMap<String, DrawableResource>) {
|
||||
map.put("compose_multiplatform", Res.drawable.compose_multiplatform)
|
||||
}
|
||||
@ -0,0 +1,19 @@
|
||||
package sclient.composeapp.generated.resources
|
||||
|
||||
import kotlin.String
|
||||
import kotlin.collections.Map
|
||||
import org.jetbrains.compose.resources.DrawableResource
|
||||
import org.jetbrains.compose.resources.FontResource
|
||||
import org.jetbrains.compose.resources.PluralStringResource
|
||||
import org.jetbrains.compose.resources.StringArrayResource
|
||||
import org.jetbrains.compose.resources.StringResource
|
||||
|
||||
internal expect val Res.allDrawableResources: Map<String, DrawableResource>
|
||||
|
||||
internal expect val Res.allStringResources: Map<String, StringResource>
|
||||
|
||||
internal expect val Res.allStringArrayResources: Map<String, StringArrayResource>
|
||||
|
||||
internal expect val Res.allPluralStringResources: Map<String, PluralStringResource>
|
||||
|
||||
internal expect val Res.allFontResources: Map<String, FontResource>
|
||||
@ -0,0 +1,47 @@
|
||||
@file:OptIn(InternalResourceApi::class)
|
||||
@file:Suppress(
|
||||
"RedundantVisibilityModifier",
|
||||
"REDUNDANT_VISIBILITY_MODIFIER",
|
||||
)
|
||||
|
||||
package sclient.composeapp.generated.resources
|
||||
|
||||
import kotlin.ByteArray
|
||||
import kotlin.OptIn
|
||||
import kotlin.String
|
||||
import kotlin.Suppress
|
||||
import org.jetbrains.compose.resources.InternalResourceApi
|
||||
import org.jetbrains.compose.resources.getResourceUri
|
||||
import org.jetbrains.compose.resources.readResourceBytes
|
||||
|
||||
internal object Res {
|
||||
/**
|
||||
* Reads the content of the resource file at the specified path and returns it as a byte array.
|
||||
*
|
||||
* Example: `val bytes = Res.readBytes("files/key.bin")`
|
||||
*
|
||||
* @param path The path of the file to read in the compose resource's directory.
|
||||
* @return The content of the file as a byte array.
|
||||
*/
|
||||
public suspend fun readBytes(path: String): ByteArray = readResourceBytes("composeResources/sclient.composeapp.generated.resources/" + path)
|
||||
|
||||
/**
|
||||
* Returns the URI string of the resource file at the specified path.
|
||||
*
|
||||
* Example: `val uri = Res.getUri("files/key.bin")`
|
||||
*
|
||||
* @param path The path of the file in the compose resource's directory.
|
||||
* @return The URI string of the file.
|
||||
*/
|
||||
public fun getUri(path: String): String = getResourceUri("composeResources/sclient.composeapp.generated.resources/" + path)
|
||||
|
||||
public object drawable
|
||||
|
||||
public object string
|
||||
|
||||
public object array
|
||||
|
||||
public object plurals
|
||||
|
||||
public object font
|
||||
}
|
||||
@ -0,0 +1,38 @@
|
||||
@file:OptIn(org.jetbrains.compose.resources.InternalResourceApi::class)
|
||||
|
||||
package sclient.composeapp.generated.resources
|
||||
|
||||
import kotlin.OptIn
|
||||
import kotlin.String
|
||||
import kotlin.collections.Map
|
||||
import org.jetbrains.compose.resources.DrawableResource
|
||||
import org.jetbrains.compose.resources.FontResource
|
||||
import org.jetbrains.compose.resources.PluralStringResource
|
||||
import org.jetbrains.compose.resources.StringArrayResource
|
||||
import org.jetbrains.compose.resources.StringResource
|
||||
|
||||
internal actual val Res.allDrawableResources: Map<String, DrawableResource> by lazy {
|
||||
val map = mutableMapOf<String, DrawableResource>()
|
||||
_collectCommonMainDrawable0Resources(map)
|
||||
return@lazy map
|
||||
}
|
||||
|
||||
internal actual val Res.allStringResources: Map<String, StringResource> by lazy {
|
||||
val map = mutableMapOf<String, StringResource>()
|
||||
return@lazy map
|
||||
}
|
||||
|
||||
internal actual val Res.allStringArrayResources: Map<String, StringArrayResource> by lazy {
|
||||
val map = mutableMapOf<String, StringArrayResource>()
|
||||
return@lazy map
|
||||
}
|
||||
|
||||
internal actual val Res.allPluralStringResources: Map<String, PluralStringResource> by lazy {
|
||||
val map = mutableMapOf<String, PluralStringResource>()
|
||||
return@lazy map
|
||||
}
|
||||
|
||||
internal actual val Res.allFontResources: Map<String, FontResource> by lazy {
|
||||
val map = mutableMapOf<String, FontResource>()
|
||||
return@lazy map
|
||||
}
|
||||
@ -0,0 +1,38 @@
|
||||
@file:OptIn(org.jetbrains.compose.resources.InternalResourceApi::class)
|
||||
|
||||
package sclient.composeapp.generated.resources
|
||||
|
||||
import kotlin.OptIn
|
||||
import kotlin.String
|
||||
import kotlin.collections.Map
|
||||
import org.jetbrains.compose.resources.DrawableResource
|
||||
import org.jetbrains.compose.resources.FontResource
|
||||
import org.jetbrains.compose.resources.PluralStringResource
|
||||
import org.jetbrains.compose.resources.StringArrayResource
|
||||
import org.jetbrains.compose.resources.StringResource
|
||||
|
||||
internal actual val Res.allDrawableResources: Map<String, DrawableResource> by lazy {
|
||||
val map = mutableMapOf<String, DrawableResource>()
|
||||
_collectCommonMainDrawable0Resources(map)
|
||||
return@lazy map
|
||||
}
|
||||
|
||||
internal actual val Res.allStringResources: Map<String, StringResource> by lazy {
|
||||
val map = mutableMapOf<String, StringResource>()
|
||||
return@lazy map
|
||||
}
|
||||
|
||||
internal actual val Res.allStringArrayResources: Map<String, StringArrayResource> by lazy {
|
||||
val map = mutableMapOf<String, StringArrayResource>()
|
||||
return@lazy map
|
||||
}
|
||||
|
||||
internal actual val Res.allPluralStringResources: Map<String, PluralStringResource> by lazy {
|
||||
val map = mutableMapOf<String, PluralStringResource>()
|
||||
return@lazy map
|
||||
}
|
||||
|
||||
internal actual val Res.allFontResources: Map<String, FontResource> by lazy {
|
||||
val map = mutableMapOf<String, FontResource>()
|
||||
return@lazy map
|
||||
}
|
||||
@ -0,0 +1,44 @@
|
||||
<vector
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:aapt="http://schemas.android.com/aapt"
|
||||
android:width="450dp"
|
||||
android:height="450dp"
|
||||
android:viewportWidth="64"
|
||||
android:viewportHeight="64">
|
||||
<path
|
||||
android:pathData="M56.25,18V46L32,60 7.75,46V18L32,4Z"
|
||||
android:fillColor="#6075f2"/>
|
||||
<path
|
||||
android:pathData="m41.5,26.5v11L32,43V60L56.25,46V18Z"
|
||||
android:fillColor="#6b57ff"/>
|
||||
<path
|
||||
android:pathData="m32,43 l-9.5,-5.5v-11L7.75,18V46L32,60Z">
|
||||
<aapt:attr name="android:fillColor">
|
||||
<gradient
|
||||
android:centerX="23.131"
|
||||
android:centerY="18.441"
|
||||
android:gradientRadius="42.132"
|
||||
android:type="radial">
|
||||
<item android:offset="0" android:color="#FF5383EC"/>
|
||||
<item android:offset="0.867" android:color="#FF7F52FF"/>
|
||||
</gradient>
|
||||
</aapt:attr>
|
||||
</path>
|
||||
<path
|
||||
android:pathData="M22.5,26.5 L32,21 41.5,26.5 56.25,18 32,4 7.75,18Z">
|
||||
<aapt:attr name="android:fillColor">
|
||||
<gradient
|
||||
android:startX="44.172"
|
||||
android:startY="4.377"
|
||||
android:endX="17.973"
|
||||
android:endY="34.035"
|
||||
android:type="linear">
|
||||
<item android:offset="0" android:color="#FF33C3FF"/>
|
||||
<item android:offset="0.878" android:color="#FF5383EC"/>
|
||||
</gradient>
|
||||
</aapt:attr>
|
||||
</path>
|
||||
<path
|
||||
android:pathData="m32,21 l9.526,5.5v11L32,43 22.474,37.5v-11z"
|
||||
android:fillColor="#000000"/>
|
||||
</vector>
|
||||
@ -0,0 +1,263 @@
|
||||
{
|
||||
"projectStructure": {
|
||||
"formatVersion": "0.3.3",
|
||||
"isPublishedAsRoot": "true",
|
||||
"variants": [
|
||||
{
|
||||
"name": "debugApiElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "debugRuntimeElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "releaseApiElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "releaseRuntimeElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "desktopApiElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "desktopRuntimeElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "iosArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"nativeMain",
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "iosSimulatorArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"nativeMain",
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "iosX64ApiElements",
|
||||
"sourceSet": [
|
||||
"nativeMain",
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jsApiElements",
|
||||
"sourceSet": [
|
||||
"webMain",
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jsRuntimeElements",
|
||||
"sourceSet": [
|
||||
"webMain",
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "linuxArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"nativeMain",
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "linuxX64ApiElements",
|
||||
"sourceSet": [
|
||||
"nativeMain",
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "macosArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"nativeMain",
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "macosX64ApiElements",
|
||||
"sourceSet": [
|
||||
"nativeMain",
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "mingwX64ApiElements",
|
||||
"sourceSet": [
|
||||
"nativeMain",
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "tvosArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"nativeMain",
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "tvosSimulatorArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"nativeMain",
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "tvosX64ApiElements",
|
||||
"sourceSet": [
|
||||
"nativeMain",
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "wasmJsApiElements",
|
||||
"sourceSet": [
|
||||
"webMain",
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "wasmJsRuntimeElements",
|
||||
"sourceSet": [
|
||||
"webMain",
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "watchosArm32ApiElements",
|
||||
"sourceSet": [
|
||||
"nativeMain",
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "watchosArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"nativeMain",
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "watchosSimulatorArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"nativeMain",
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "watchosX64ApiElements",
|
||||
"sourceSet": [
|
||||
"nativeMain",
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
}
|
||||
],
|
||||
"sourceSets": [
|
||||
{
|
||||
"name": "commonMain",
|
||||
"dependsOn": [],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"org.jetbrains.androidx.lifecycle:lifecycle-common",
|
||||
"org.jetbrains.compose.annotation-internal:annotation"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "jvmMain",
|
||||
"dependsOn": [
|
||||
"commonMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"org.jetbrains.androidx.lifecycle:lifecycle-common",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"androidx.arch.core:core-common"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "nativeMain",
|
||||
"dependsOn": [
|
||||
"nonJvmMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.androidx.lifecycle:lifecycle-common",
|
||||
"org.jetbrains.compose.annotation-internal:annotation"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "nativeMain-cinterop",
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "nonJvmMain",
|
||||
"dependsOn": [
|
||||
"commonMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"org.jetbrains.androidx.lifecycle:lifecycle-common",
|
||||
"org.jetbrains.compose.annotation-internal:annotation"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "webMain",
|
||||
"dependsOn": [
|
||||
"nonJvmMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"org.jetbrains.androidx.lifecycle:lifecycle-common",
|
||||
"org.jetbrains.compose.annotation-internal:annotation"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,327 @@
|
||||
{
|
||||
"projectStructure": {
|
||||
"formatVersion": "0.3.3",
|
||||
"isPublishedAsRoot": "true",
|
||||
"variants": [
|
||||
{
|
||||
"name": "debugApiElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "debugRuntimeElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "releaseApiElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "releaseRuntimeElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "desktopApiElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain",
|
||||
"skikoMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "desktopRuntimeElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain",
|
||||
"skikoMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jsApiElements",
|
||||
"sourceSet": [
|
||||
"commonMain",
|
||||
"jsWasmMain",
|
||||
"jsNativeMain",
|
||||
"skikoMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jsRuntimeElements",
|
||||
"sourceSet": [
|
||||
"commonMain",
|
||||
"jsWasmMain",
|
||||
"jsNativeMain",
|
||||
"skikoMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "macosArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"macosMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"jsNativeMain",
|
||||
"skikoMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "macosX64ApiElements",
|
||||
"sourceSet": [
|
||||
"macosMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"jsNativeMain",
|
||||
"skikoMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "uikitArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"uikitMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"jsNativeMain",
|
||||
"skikoMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "uikitSimArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"uikitMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"jsNativeMain",
|
||||
"skikoMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "uikitX64ApiElements",
|
||||
"sourceSet": [
|
||||
"uikitMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"jsNativeMain",
|
||||
"skikoMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "wasmJsApiElements",
|
||||
"sourceSet": [
|
||||
"commonMain",
|
||||
"jsWasmMain",
|
||||
"jsNativeMain",
|
||||
"skikoMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "wasmJsRuntimeElements",
|
||||
"sourceSet": [
|
||||
"commonMain",
|
||||
"jsWasmMain",
|
||||
"jsNativeMain",
|
||||
"skikoMain"
|
||||
]
|
||||
}
|
||||
],
|
||||
"sourceSets": [
|
||||
{
|
||||
"name": "commonMain",
|
||||
"dependsOn": [],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.animation:animation",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.ui:ui",
|
||||
"org.jetbrains.kotlinx:atomicfu",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.collection-internal:collection",
|
||||
"org.jetbrains.compose.ui:ui-text",
|
||||
"org.jetbrains.compose.ui:ui-util",
|
||||
"org.jetbrains.compose.foundation:foundation-layout"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "darwinMain",
|
||||
"dependsOn": [
|
||||
"nativeMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.animation:animation",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.ui:ui",
|
||||
"org.jetbrains.kotlinx:atomicfu",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.collection-internal:collection",
|
||||
"org.jetbrains.compose.ui:ui-text",
|
||||
"org.jetbrains.compose.ui:ui-util",
|
||||
"org.jetbrains.compose.foundation:foundation-layout",
|
||||
"org.jetbrains.skiko:skiko"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "darwinMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
},
|
||||
{
|
||||
"name": "jsNativeMain",
|
||||
"dependsOn": [
|
||||
"skikoMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.animation:animation",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.ui:ui",
|
||||
"org.jetbrains.kotlinx:atomicfu",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.collection-internal:collection",
|
||||
"org.jetbrains.compose.ui:ui-text",
|
||||
"org.jetbrains.compose.ui:ui-util",
|
||||
"org.jetbrains.compose.foundation:foundation-layout",
|
||||
"org.jetbrains.skiko:skiko"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "jsWasmMain",
|
||||
"dependsOn": [
|
||||
"jsNativeMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.animation:animation",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.ui:ui",
|
||||
"org.jetbrains.kotlinx:atomicfu",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.collection-internal:collection",
|
||||
"org.jetbrains.compose.ui:ui-text",
|
||||
"org.jetbrains.compose.ui:ui-util",
|
||||
"org.jetbrains.compose.foundation:foundation-layout",
|
||||
"org.jetbrains.skiko:skiko"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "jvmMain",
|
||||
"dependsOn": [
|
||||
"commonMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.animation:animation",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.ui:ui",
|
||||
"org.jetbrains.kotlinx:atomicfu",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.collection-internal:collection",
|
||||
"org.jetbrains.compose.ui:ui-text",
|
||||
"org.jetbrains.compose.ui:ui-util",
|
||||
"org.jetbrains.compose.foundation:foundation-layout"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "macosMain",
|
||||
"dependsOn": [
|
||||
"darwinMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.animation:animation",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.ui:ui",
|
||||
"org.jetbrains.kotlinx:atomicfu",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.collection-internal:collection",
|
||||
"org.jetbrains.compose.ui:ui-text",
|
||||
"org.jetbrains.compose.ui:ui-util",
|
||||
"org.jetbrains.compose.foundation:foundation-layout",
|
||||
"org.jetbrains.skiko:skiko"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "macosMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
},
|
||||
{
|
||||
"name": "nativeMain",
|
||||
"dependsOn": [
|
||||
"commonMain",
|
||||
"jsNativeMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.animation:animation",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.ui:ui",
|
||||
"org.jetbrains.kotlinx:atomicfu",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.collection-internal:collection",
|
||||
"org.jetbrains.compose.ui:ui-text",
|
||||
"org.jetbrains.compose.ui:ui-util",
|
||||
"org.jetbrains.compose.foundation:foundation-layout",
|
||||
"org.jetbrains.skiko:skiko"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "nativeMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
},
|
||||
{
|
||||
"name": "skikoMain",
|
||||
"dependsOn": [
|
||||
"commonMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.animation:animation",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.ui:ui",
|
||||
"org.jetbrains.kotlinx:atomicfu",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.collection-internal:collection",
|
||||
"org.jetbrains.compose.ui:ui-text",
|
||||
"org.jetbrains.compose.ui:ui-util",
|
||||
"org.jetbrains.compose.foundation:foundation-layout",
|
||||
"org.jetbrains.skiko:skiko"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "uikitMain",
|
||||
"dependsOn": [
|
||||
"darwinMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.animation:animation",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.ui:ui",
|
||||
"org.jetbrains.kotlinx:atomicfu",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.collection-internal:collection",
|
||||
"org.jetbrains.compose.ui:ui-text",
|
||||
"org.jetbrains.compose.ui:ui-util",
|
||||
"org.jetbrains.compose.foundation:foundation-layout",
|
||||
"org.jetbrains.skiko:skiko",
|
||||
"org.jetbrains.compose.ui:ui-uikit"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "uikitMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,265 @@
|
||||
{
|
||||
"projectStructure": {
|
||||
"formatVersion": "0.3.3",
|
||||
"isPublishedAsRoot": "true",
|
||||
"variants": [
|
||||
{
|
||||
"name": "androidApiElements",
|
||||
"sourceSet": [
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "androidRuntimeElements",
|
||||
"sourceSet": [
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "awtApiElements",
|
||||
"sourceSet": [
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "awtRuntimeElements",
|
||||
"sourceSet": [
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "iosArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"iosMain",
|
||||
"uikitMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"nativeJsMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "iosSimulatorArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"iosMain",
|
||||
"uikitMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"nativeJsMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "iosX64ApiElements",
|
||||
"sourceSet": [
|
||||
"iosMain",
|
||||
"uikitMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"nativeJsMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jsApiElements",
|
||||
"sourceSet": [
|
||||
"jsWasmMain",
|
||||
"nativeJsMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jsRuntimeElements",
|
||||
"sourceSet": [
|
||||
"jsWasmMain",
|
||||
"nativeJsMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "linuxX64ApiElements",
|
||||
"sourceSet": [
|
||||
"nativeMain",
|
||||
"nativeJsMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "macosArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"macosMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"nativeJsMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "macosX64ApiElements",
|
||||
"sourceSet": [
|
||||
"macosMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"nativeJsMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "tvosArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"tvosMain",
|
||||
"uikitMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"nativeJsMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "tvosSimulatorArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"tvosMain",
|
||||
"uikitMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"nativeJsMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "tvosX64ApiElements",
|
||||
"sourceSet": [
|
||||
"tvosMain",
|
||||
"uikitMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"nativeJsMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "wasmJsApiElements",
|
||||
"sourceSet": [
|
||||
"jsWasmMain",
|
||||
"nativeJsMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "wasmJsRuntimeElements",
|
||||
"sourceSet": [
|
||||
"jsWasmMain",
|
||||
"nativeJsMain",
|
||||
"commonMain"
|
||||
]
|
||||
}
|
||||
],
|
||||
"sourceSets": [
|
||||
{
|
||||
"name": "commonMain",
|
||||
"dependsOn": [],
|
||||
"moduleDependency": [],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "darwinMain",
|
||||
"dependsOn": [
|
||||
"nativeMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlinx:atomicfu",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"org.jetbrains.kotlinx:kotlinx-coroutines-core"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "darwinMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
},
|
||||
{
|
||||
"name": "iosMain",
|
||||
"dependsOn": [
|
||||
"uikitMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlinx:atomicfu",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"org.jetbrains.kotlinx:kotlinx-coroutines-core"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "iosMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
},
|
||||
{
|
||||
"name": "jsWasmMain",
|
||||
"dependsOn": [
|
||||
"nativeJsMain"
|
||||
],
|
||||
"moduleDependency": [],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "macosMain",
|
||||
"dependsOn": [
|
||||
"darwinMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlinx:atomicfu",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"org.jetbrains.kotlinx:kotlinx-coroutines-core"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "macosMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
},
|
||||
{
|
||||
"name": "nativeJsMain",
|
||||
"dependsOn": [
|
||||
"commonMain"
|
||||
],
|
||||
"moduleDependency": [],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "nativeMain",
|
||||
"dependsOn": [
|
||||
"nativeJsMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||
"org.jetbrains.kotlinx:atomicfu"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "nativeMain-cinterop",
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "tvosMain",
|
||||
"dependsOn": [
|
||||
"uikitMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlinx:atomicfu",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"org.jetbrains.kotlinx:kotlinx-coroutines-core"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "tvosMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
},
|
||||
{
|
||||
"name": "uikitMain",
|
||||
"dependsOn": [
|
||||
"darwinMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlinx:atomicfu",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"org.jetbrains.kotlinx:kotlinx-coroutines-core"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "uikitMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,383 @@
|
||||
{
|
||||
"projectStructure": {
|
||||
"formatVersion": "0.3.3",
|
||||
"isPublishedAsRoot": "true",
|
||||
"variants": [
|
||||
{
|
||||
"name": "androidNativeArm32ApiElements",
|
||||
"sourceSet": [
|
||||
"androidNativeMain",
|
||||
"tzfileMain",
|
||||
"nativeMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "androidNativeArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"androidNativeMain",
|
||||
"tzfileMain",
|
||||
"nativeMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "androidNativeX64ApiElements",
|
||||
"sourceSet": [
|
||||
"androidNativeMain",
|
||||
"tzfileMain",
|
||||
"nativeMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "androidNativeX86ApiElements",
|
||||
"sourceSet": [
|
||||
"androidNativeMain",
|
||||
"tzfileMain",
|
||||
"nativeMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "iosArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"darwinDevicesMain",
|
||||
"darwinMain",
|
||||
"tzdbOnFilesystemMain",
|
||||
"tzfileMain",
|
||||
"nativeMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "iosSimulatorArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"darwinSimulatorMain",
|
||||
"darwinMain",
|
||||
"tzdbOnFilesystemMain",
|
||||
"tzfileMain",
|
||||
"nativeMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "iosX64ApiElements",
|
||||
"sourceSet": [
|
||||
"darwinSimulatorMain",
|
||||
"darwinMain",
|
||||
"tzdbOnFilesystemMain",
|
||||
"tzfileMain",
|
||||
"nativeMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jsApiElements",
|
||||
"sourceSet": [
|
||||
"commonJsMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jsRuntimeElements",
|
||||
"sourceSet": [
|
||||
"commonJsMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jvmApiElements",
|
||||
"sourceSet": [
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jvmRuntimeElements",
|
||||
"sourceSet": [
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "linuxArm32HfpApiElements",
|
||||
"sourceSet": [
|
||||
"linuxMain",
|
||||
"tzdbOnFilesystemMain",
|
||||
"tzfileMain",
|
||||
"nativeMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "linuxArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"linuxMain",
|
||||
"tzdbOnFilesystemMain",
|
||||
"tzfileMain",
|
||||
"nativeMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "linuxX64ApiElements",
|
||||
"sourceSet": [
|
||||
"linuxMain",
|
||||
"tzdbOnFilesystemMain",
|
||||
"tzfileMain",
|
||||
"nativeMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "macosArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"darwinDevicesMain",
|
||||
"darwinMain",
|
||||
"tzdbOnFilesystemMain",
|
||||
"tzfileMain",
|
||||
"nativeMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "macosX64ApiElements",
|
||||
"sourceSet": [
|
||||
"darwinDevicesMain",
|
||||
"darwinMain",
|
||||
"tzdbOnFilesystemMain",
|
||||
"tzfileMain",
|
||||
"nativeMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "mingwX64ApiElements",
|
||||
"sourceSet": [
|
||||
"nativeMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "tvosArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"darwinDevicesMain",
|
||||
"darwinMain",
|
||||
"tzdbOnFilesystemMain",
|
||||
"tzfileMain",
|
||||
"nativeMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "tvosSimulatorArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"darwinSimulatorMain",
|
||||
"darwinMain",
|
||||
"tzdbOnFilesystemMain",
|
||||
"tzfileMain",
|
||||
"nativeMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "tvosX64ApiElements",
|
||||
"sourceSet": [
|
||||
"darwinDevicesMain",
|
||||
"darwinMain",
|
||||
"tzdbOnFilesystemMain",
|
||||
"tzfileMain",
|
||||
"nativeMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "wasmJsApiElements",
|
||||
"sourceSet": [
|
||||
"commonJsMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "wasmJsRuntimeElements",
|
||||
"sourceSet": [
|
||||
"commonJsMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "watchosArm32ApiElements",
|
||||
"sourceSet": [
|
||||
"darwinDevicesMain",
|
||||
"darwinMain",
|
||||
"tzdbOnFilesystemMain",
|
||||
"tzfileMain",
|
||||
"nativeMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "watchosArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"darwinDevicesMain",
|
||||
"darwinMain",
|
||||
"tzdbOnFilesystemMain",
|
||||
"tzfileMain",
|
||||
"nativeMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "watchosDeviceArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"darwinDevicesMain",
|
||||
"darwinMain",
|
||||
"tzdbOnFilesystemMain",
|
||||
"tzfileMain",
|
||||
"nativeMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "watchosSimulatorArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"darwinSimulatorMain",
|
||||
"darwinMain",
|
||||
"tzdbOnFilesystemMain",
|
||||
"tzfileMain",
|
||||
"nativeMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "watchosX64ApiElements",
|
||||
"sourceSet": [
|
||||
"darwinDevicesMain",
|
||||
"darwinMain",
|
||||
"tzdbOnFilesystemMain",
|
||||
"tzfileMain",
|
||||
"nativeMain",
|
||||
"commonMain"
|
||||
]
|
||||
}
|
||||
],
|
||||
"sourceSets": [
|
||||
{
|
||||
"name": "androidNativeMain",
|
||||
"dependsOn": [
|
||||
"tzfileMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlinx:kotlinx-serialization-core",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "androidNativeMain-cinterop",
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "commonJsMain",
|
||||
"dependsOn": [
|
||||
"commonMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlinx:kotlinx-serialization-core"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "commonMain",
|
||||
"dependsOn": [],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "darwinDevicesMain",
|
||||
"dependsOn": [
|
||||
"darwinMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlinx:kotlinx-serialization-core",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "darwinDevicesMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
},
|
||||
{
|
||||
"name": "darwinMain",
|
||||
"dependsOn": [
|
||||
"tzdbOnFilesystemMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlinx:kotlinx-serialization-core",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "darwinMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
},
|
||||
{
|
||||
"name": "darwinSimulatorMain",
|
||||
"dependsOn": [
|
||||
"darwinMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlinx:kotlinx-serialization-core",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "darwinSimulatorMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
},
|
||||
{
|
||||
"name": "linuxMain",
|
||||
"dependsOn": [
|
||||
"tzdbOnFilesystemMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlinx:kotlinx-serialization-core",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "linuxMain-cinterop",
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "nativeMain",
|
||||
"dependsOn": [
|
||||
"commonMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"org.jetbrains.kotlinx:kotlinx-serialization-core"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "nativeMain-cinterop",
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "tzdbOnFilesystemMain",
|
||||
"dependsOn": [
|
||||
"tzfileMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlinx:kotlinx-serialization-core",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "tzdbOnFilesystemMain-cinterop",
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "tzfileMain",
|
||||
"dependsOn": [
|
||||
"nativeMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlinx:kotlinx-serialization-core",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "tzfileMain-cinterop",
|
||||
"binaryLayout": "klib"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,335 @@
|
||||
{
|
||||
"projectStructure": {
|
||||
"formatVersion": "0.3.3",
|
||||
"isPublishedAsRoot": "true",
|
||||
"variants": [
|
||||
{
|
||||
"name": "debugApiElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "debugRuntimeElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "releaseApiElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "releaseRuntimeElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "desktopApiElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain",
|
||||
"skikoMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "desktopRuntimeElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain",
|
||||
"skikoMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jsApiElements",
|
||||
"sourceSet": [
|
||||
"commonMain",
|
||||
"jsWasmMain",
|
||||
"jsNativeMain",
|
||||
"skikoMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jsRuntimeElements",
|
||||
"sourceSet": [
|
||||
"commonMain",
|
||||
"jsWasmMain",
|
||||
"jsNativeMain",
|
||||
"skikoMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "macosArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"macosMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"jsNativeMain",
|
||||
"skikoMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "macosX64ApiElements",
|
||||
"sourceSet": [
|
||||
"macosMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"jsNativeMain",
|
||||
"skikoMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "uikitArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"uikitMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"jsNativeMain",
|
||||
"skikoMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "uikitSimArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"uikitMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"jsNativeMain",
|
||||
"skikoMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "uikitX64ApiElements",
|
||||
"sourceSet": [
|
||||
"uikitMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"jsNativeMain",
|
||||
"skikoMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "wasmJsApiElements",
|
||||
"sourceSet": [
|
||||
"commonMain",
|
||||
"jsWasmMain",
|
||||
"jsNativeMain",
|
||||
"skikoMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "wasmJsRuntimeElements",
|
||||
"sourceSet": [
|
||||
"commonMain",
|
||||
"jsWasmMain",
|
||||
"jsNativeMain",
|
||||
"skikoMain"
|
||||
]
|
||||
}
|
||||
],
|
||||
"sourceSets": [
|
||||
{
|
||||
"name": "commonMain",
|
||||
"dependsOn": [],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.ui:ui-graphics",
|
||||
"org.jetbrains.compose.ui:ui-unit",
|
||||
"org.jetbrains.kotlinx:atomicfu",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.runtime:runtime-saveable",
|
||||
"org.jetbrains.compose.ui:ui-util",
|
||||
"org.jetbrains.compose.ui:ui-geometry",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.collection-internal:collection"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "darwinMain",
|
||||
"dependsOn": [
|
||||
"nativeMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.ui:ui-graphics",
|
||||
"org.jetbrains.compose.ui:ui-unit",
|
||||
"org.jetbrains.kotlinx:atomicfu",
|
||||
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.runtime:runtime-saveable",
|
||||
"org.jetbrains.compose.ui:ui-util",
|
||||
"org.jetbrains.compose.ui:ui-geometry",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.collection-internal:collection",
|
||||
"org.jetbrains.skiko:skiko"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "darwinMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
},
|
||||
{
|
||||
"name": "jsNativeMain",
|
||||
"dependsOn": [
|
||||
"skikoMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.ui:ui-graphics",
|
||||
"org.jetbrains.compose.ui:ui-unit",
|
||||
"org.jetbrains.kotlinx:atomicfu",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.runtime:runtime-saveable",
|
||||
"org.jetbrains.compose.ui:ui-util",
|
||||
"org.jetbrains.compose.ui:ui-geometry",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.collection-internal:collection",
|
||||
"org.jetbrains.skiko:skiko"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "jsWasmMain",
|
||||
"dependsOn": [
|
||||
"jsNativeMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.ui:ui-graphics",
|
||||
"org.jetbrains.compose.ui:ui-unit",
|
||||
"org.jetbrains.kotlinx:atomicfu",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.runtime:runtime-saveable",
|
||||
"org.jetbrains.compose.ui:ui-util",
|
||||
"org.jetbrains.compose.ui:ui-geometry",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.collection-internal:collection",
|
||||
"org.jetbrains.skiko:skiko"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "jvmMain",
|
||||
"dependsOn": [
|
||||
"commonMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.ui:ui-graphics",
|
||||
"org.jetbrains.compose.ui:ui-unit",
|
||||
"org.jetbrains.kotlinx:atomicfu",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.runtime:runtime-saveable",
|
||||
"org.jetbrains.compose.ui:ui-util",
|
||||
"org.jetbrains.compose.ui:ui-geometry",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.collection-internal:collection"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "macosMain",
|
||||
"dependsOn": [
|
||||
"darwinMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.ui:ui-graphics",
|
||||
"org.jetbrains.compose.ui:ui-unit",
|
||||
"org.jetbrains.kotlinx:atomicfu",
|
||||
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.runtime:runtime-saveable",
|
||||
"org.jetbrains.compose.ui:ui-util",
|
||||
"org.jetbrains.compose.ui:ui-geometry",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.collection-internal:collection",
|
||||
"org.jetbrains.skiko:skiko"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "macosMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
},
|
||||
{
|
||||
"name": "nativeMain",
|
||||
"dependsOn": [
|
||||
"commonMain",
|
||||
"jsNativeMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.ui:ui-graphics",
|
||||
"org.jetbrains.compose.ui:ui-unit",
|
||||
"org.jetbrains.kotlinx:atomicfu",
|
||||
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.runtime:runtime-saveable",
|
||||
"org.jetbrains.compose.ui:ui-util",
|
||||
"org.jetbrains.compose.ui:ui-geometry",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.collection-internal:collection",
|
||||
"org.jetbrains.skiko:skiko"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "nativeMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
},
|
||||
{
|
||||
"name": "skikoMain",
|
||||
"dependsOn": [
|
||||
"commonMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.ui:ui-graphics",
|
||||
"org.jetbrains.compose.ui:ui-unit",
|
||||
"org.jetbrains.kotlinx:atomicfu",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.runtime:runtime-saveable",
|
||||
"org.jetbrains.compose.ui:ui-util",
|
||||
"org.jetbrains.compose.ui:ui-geometry",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.collection-internal:collection",
|
||||
"org.jetbrains.skiko:skiko"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "uikitMain",
|
||||
"dependsOn": [
|
||||
"darwinMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.ui:ui-graphics",
|
||||
"org.jetbrains.compose.ui:ui-unit",
|
||||
"org.jetbrains.kotlinx:atomicfu",
|
||||
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.runtime:runtime-saveable",
|
||||
"org.jetbrains.compose.ui:ui-util",
|
||||
"org.jetbrains.compose.ui:ui-geometry",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.collection-internal:collection",
|
||||
"org.jetbrains.skiko:skiko"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "uikitMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,206 @@
|
||||
{
|
||||
"projectStructure": {
|
||||
"formatVersion": "0.3.3",
|
||||
"isPublishedAsRoot": "true",
|
||||
"variants": [
|
||||
{
|
||||
"name": "androidNativeArm32ApiElements",
|
||||
"sourceSet": [
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "androidNativeArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "androidNativeX64ApiElements",
|
||||
"sourceSet": [
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "androidNativeX86ApiElements",
|
||||
"sourceSet": [
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "iosArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "iosSimulatorArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "iosX64ApiElements",
|
||||
"sourceSet": [
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jsApiElements",
|
||||
"sourceSet": [
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jsRuntimeElements",
|
||||
"sourceSet": [
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jvmApiElements",
|
||||
"sourceSet": [
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jvmRuntimeElements",
|
||||
"sourceSet": [
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "linuxArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "linuxX64ApiElements",
|
||||
"sourceSet": [
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "macosArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "macosX64ApiElements",
|
||||
"sourceSet": [
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "mingwX64ApiElements",
|
||||
"sourceSet": [
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "tvosArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "tvosSimulatorArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "tvosX64ApiElements",
|
||||
"sourceSet": [
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "wasmJsApiElements",
|
||||
"sourceSet": [
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "wasmJsRuntimeElements",
|
||||
"sourceSet": [
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "watchosArm32ApiElements",
|
||||
"sourceSet": [
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "watchosArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "watchosDeviceArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "watchosSimulatorArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "watchosX64ApiElements",
|
||||
"sourceSet": [
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
}
|
||||
],
|
||||
"sourceSets": [
|
||||
{
|
||||
"name": "commonMain",
|
||||
"dependsOn": [],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "nonJvmMain",
|
||||
"dependsOn": [
|
||||
"commonMain"
|
||||
],
|
||||
"moduleDependency": [],
|
||||
"binaryLayout": "klib"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,309 @@
|
||||
{
|
||||
"projectStructure": {
|
||||
"formatVersion": "0.3.3",
|
||||
"isPublishedAsRoot": "true",
|
||||
"variants": [
|
||||
{
|
||||
"name": "debugApiElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "debugRuntimeElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "releaseApiElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "releaseRuntimeElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "desktopApiElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain",
|
||||
"notMobileMain",
|
||||
"skikoMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "desktopRuntimeElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain",
|
||||
"notMobileMain",
|
||||
"skikoMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jsApiElements",
|
||||
"sourceSet": [
|
||||
"commonMain",
|
||||
"jsWasmMain",
|
||||
"jsNativeMain",
|
||||
"notMobileMain",
|
||||
"skikoMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jsRuntimeElements",
|
||||
"sourceSet": [
|
||||
"commonMain",
|
||||
"jsWasmMain",
|
||||
"jsNativeMain",
|
||||
"notMobileMain",
|
||||
"skikoMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "macosArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"macosMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"jsNativeMain",
|
||||
"notMobileMain",
|
||||
"skikoMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "macosX64ApiElements",
|
||||
"sourceSet": [
|
||||
"macosMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"jsNativeMain",
|
||||
"notMobileMain",
|
||||
"skikoMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "uikitArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"uikitMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"jsNativeMain",
|
||||
"skikoMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "uikitSimArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"uikitMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"jsNativeMain",
|
||||
"skikoMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "uikitX64ApiElements",
|
||||
"sourceSet": [
|
||||
"uikitMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"jsNativeMain",
|
||||
"skikoMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "wasmJsApiElements",
|
||||
"sourceSet": [
|
||||
"commonMain",
|
||||
"jsWasmMain",
|
||||
"jsNativeMain",
|
||||
"notMobileMain",
|
||||
"skikoMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "wasmJsRuntimeElements",
|
||||
"sourceSet": [
|
||||
"commonMain",
|
||||
"jsWasmMain",
|
||||
"jsNativeMain",
|
||||
"notMobileMain",
|
||||
"skikoMain"
|
||||
]
|
||||
}
|
||||
],
|
||||
"sourceSets": [
|
||||
{
|
||||
"name": "commonMain",
|
||||
"dependsOn": [],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.ui:ui",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.collection-internal:collection",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.ui:ui-util"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "darwinMain",
|
||||
"dependsOn": [
|
||||
"nativeMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.ui:ui",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.collection-internal:collection",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.ui:ui-util"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "darwinMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
},
|
||||
{
|
||||
"name": "jsNativeMain",
|
||||
"dependsOn": [
|
||||
"commonMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.ui:ui",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.collection-internal:collection",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.ui:ui-util"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "jsWasmMain",
|
||||
"dependsOn": [
|
||||
"jsNativeMain",
|
||||
"notMobileMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.ui:ui",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.collection-internal:collection",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.ui:ui-util"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "jvmMain",
|
||||
"dependsOn": [
|
||||
"commonMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.ui:ui",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.collection-internal:collection",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.ui:ui-util"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "macosMain",
|
||||
"dependsOn": [
|
||||
"darwinMain",
|
||||
"notMobileMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.ui:ui",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.collection-internal:collection",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.ui:ui-util"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "macosMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
},
|
||||
{
|
||||
"name": "nativeMain",
|
||||
"dependsOn": [
|
||||
"commonMain",
|
||||
"jsNativeMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.ui:ui",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.collection-internal:collection",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.ui:ui-util"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "nativeMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
},
|
||||
{
|
||||
"name": "notMobileMain",
|
||||
"dependsOn": [
|
||||
"skikoMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.ui:ui",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.collection-internal:collection",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.ui:ui-util"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "skikoMain",
|
||||
"dependsOn": [
|
||||
"commonMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.ui:ui",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.collection-internal:collection",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.ui:ui-util"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "uikitMain",
|
||||
"dependsOn": [
|
||||
"darwinMain",
|
||||
"skikoMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.ui:ui",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.collection-internal:collection",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.ui:ui-util"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "uikitMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,229 @@
|
||||
{
|
||||
"projectStructure": {
|
||||
"formatVersion": "0.3.3",
|
||||
"isPublishedAsRoot": "true",
|
||||
"variants": [
|
||||
{
|
||||
"name": "androidNativeArm32ApiElements",
|
||||
"sourceSet": [
|
||||
"nativeMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "androidNativeArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"nativeMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "androidNativeX64ApiElements",
|
||||
"sourceSet": [
|
||||
"nativeMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "androidNativeX86ApiElements",
|
||||
"sourceSet": [
|
||||
"nativeMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "iosArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"nativeMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "iosSimulatorArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"nativeMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "iosX64ApiElements",
|
||||
"sourceSet": [
|
||||
"nativeMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jsApiElements",
|
||||
"sourceSet": [
|
||||
"jsAndWasmSharedMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jsRuntimeElements",
|
||||
"sourceSet": [
|
||||
"jsAndWasmSharedMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jvmApiElements",
|
||||
"sourceSet": [
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jvmRuntimeElements",
|
||||
"sourceSet": [
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "linuxArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"nativeMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "linuxX64ApiElements",
|
||||
"sourceSet": [
|
||||
"nativeMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "macosArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"nativeMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "macosX64ApiElements",
|
||||
"sourceSet": [
|
||||
"nativeMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "mingwX64ApiElements",
|
||||
"sourceSet": [
|
||||
"nativeMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "tvosArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"nativeMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "tvosSimulatorArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"nativeMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "tvosX64ApiElements",
|
||||
"sourceSet": [
|
||||
"nativeMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "wasmJsApiElements",
|
||||
"sourceSet": [
|
||||
"jsAndWasmSharedMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "wasmJsRuntimeElements",
|
||||
"sourceSet": [
|
||||
"jsAndWasmSharedMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "wasmWasiApiElements",
|
||||
"sourceSet": [
|
||||
"jsAndWasmSharedMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "wasmWasiRuntimeElements",
|
||||
"sourceSet": [
|
||||
"jsAndWasmSharedMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "watchosArm32ApiElements",
|
||||
"sourceSet": [
|
||||
"nativeMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "watchosArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"nativeMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "watchosDeviceArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"nativeMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "watchosSimulatorArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"nativeMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "watchosX64ApiElements",
|
||||
"sourceSet": [
|
||||
"nativeMain",
|
||||
"commonMain"
|
||||
]
|
||||
}
|
||||
],
|
||||
"sourceSets": [
|
||||
{
|
||||
"name": "commonMain",
|
||||
"dependsOn": [],
|
||||
"moduleDependency": [],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "jsAndWasmSharedMain",
|
||||
"dependsOn": [
|
||||
"commonMain"
|
||||
],
|
||||
"moduleDependency": [],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "nativeMain",
|
||||
"dependsOn": [
|
||||
"commonMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "nativeMain-cinterop",
|
||||
"binaryLayout": "klib"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,178 @@
|
||||
{
|
||||
"projectStructure": {
|
||||
"formatVersion": "0.3.3",
|
||||
"isPublishedAsRoot": "true",
|
||||
"variants": [
|
||||
{
|
||||
"name": "iosArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "iosSimulatorArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "iosX64ApiElements",
|
||||
"sourceSet": [
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jsApiElements",
|
||||
"sourceSet": [
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jsRuntimeElements",
|
||||
"sourceSet": [
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jvmApiElements",
|
||||
"sourceSet": [
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jvmRuntimeElements",
|
||||
"sourceSet": [
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "linuxArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "linuxX64ApiElements",
|
||||
"sourceSet": [
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "macosArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "macosX64ApiElements",
|
||||
"sourceSet": [
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "mingwX64ApiElements",
|
||||
"sourceSet": [
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "tvosArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "tvosSimulatorArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "tvosX64ApiElements",
|
||||
"sourceSet": [
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "wasmJsApiElements",
|
||||
"sourceSet": [
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "wasmJsRuntimeElements",
|
||||
"sourceSet": [
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "watchosArm32ApiElements",
|
||||
"sourceSet": [
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "watchosArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "watchosSimulatorArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "watchosX64ApiElements",
|
||||
"sourceSet": [
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
}
|
||||
],
|
||||
"sourceSets": [
|
||||
{
|
||||
"name": "commonMain",
|
||||
"dependsOn": [],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||
"org.jetbrains.compose.annotation-internal:annotation"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "nonJvmMain",
|
||||
"dependsOn": [
|
||||
"commonMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.kotlinx:atomicfu"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,283 @@
|
||||
{
|
||||
"projectStructure": {
|
||||
"formatVersion": "0.3.3",
|
||||
"isPublishedAsRoot": "true",
|
||||
"variants": [
|
||||
{
|
||||
"name": "debugApiElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "debugRuntimeElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "releaseApiElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "releaseRuntimeElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "desktopApiElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain",
|
||||
"jbMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "desktopRuntimeElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain",
|
||||
"jbMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jsApiElements",
|
||||
"sourceSet": [
|
||||
"commonMain",
|
||||
"webMain",
|
||||
"nonJvmMain",
|
||||
"jbMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jsRuntimeElements",
|
||||
"sourceSet": [
|
||||
"commonMain",
|
||||
"webMain",
|
||||
"nonJvmMain",
|
||||
"jbMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "macosArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"macosMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"nonJvmMain",
|
||||
"jbMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "macosX64ApiElements",
|
||||
"sourceSet": [
|
||||
"macosMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"nonJvmMain",
|
||||
"jbMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "uikitArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"uikitMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"nonJvmMain",
|
||||
"jbMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "uikitSimArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"uikitMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"nonJvmMain",
|
||||
"jbMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "uikitX64ApiElements",
|
||||
"sourceSet": [
|
||||
"uikitMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"nonJvmMain",
|
||||
"jbMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "wasmJsApiElements",
|
||||
"sourceSet": [
|
||||
"commonMain",
|
||||
"webMain",
|
||||
"nonJvmMain",
|
||||
"jbMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "wasmJsRuntimeElements",
|
||||
"sourceSet": [
|
||||
"commonMain",
|
||||
"webMain",
|
||||
"nonJvmMain",
|
||||
"jbMain"
|
||||
]
|
||||
}
|
||||
],
|
||||
"sourceSets": [
|
||||
{
|
||||
"name": "commonMain",
|
||||
"dependsOn": [],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.ui:ui-util",
|
||||
"org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "darwinMain",
|
||||
"dependsOn": [
|
||||
"nativeMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.ui:ui-util",
|
||||
"org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "darwinMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
},
|
||||
{
|
||||
"name": "jbMain",
|
||||
"dependsOn": [
|
||||
"commonMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.ui:ui-util",
|
||||
"org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "jvmMain",
|
||||
"dependsOn": [
|
||||
"commonMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.ui:ui-util",
|
||||
"org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "macosMain",
|
||||
"dependsOn": [
|
||||
"darwinMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.ui:ui-util",
|
||||
"org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "macosMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
},
|
||||
{
|
||||
"name": "nativeMain",
|
||||
"dependsOn": [
|
||||
"commonMain",
|
||||
"nonJvmMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.ui:ui-util",
|
||||
"org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "nativeMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
},
|
||||
{
|
||||
"name": "nonJvmMain",
|
||||
"dependsOn": [
|
||||
"jbMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.ui:ui-util",
|
||||
"org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "uikitMain",
|
||||
"dependsOn": [
|
||||
"darwinMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.ui:ui-util",
|
||||
"org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "uikitMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
},
|
||||
{
|
||||
"name": "webMain",
|
||||
"dependsOn": [
|
||||
"nonJvmMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.ui:ui-util",
|
||||
"org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,302 @@
|
||||
{
|
||||
"projectStructure": {
|
||||
"formatVersion": "0.3.3",
|
||||
"isPublishedAsRoot": "true",
|
||||
"variants": [
|
||||
{
|
||||
"name": "debugApiElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "debugRuntimeElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "releaseApiElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "releaseRuntimeElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "desktopApiElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain",
|
||||
"nonAndroidMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "desktopRuntimeElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain",
|
||||
"nonAndroidMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jsApiElements",
|
||||
"sourceSet": [
|
||||
"commonMain",
|
||||
"nonAndroidMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jsRuntimeElements",
|
||||
"sourceSet": [
|
||||
"commonMain",
|
||||
"nonAndroidMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "linuxArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"nonAndroidMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "linuxX64ApiElements",
|
||||
"sourceSet": [
|
||||
"nonAndroidMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "macosArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"macosMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"nonAndroidMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "macosX64ApiElements",
|
||||
"sourceSet": [
|
||||
"macosMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"nonAndroidMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "mingwX64ApiElements",
|
||||
"sourceSet": [
|
||||
"nonAndroidMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "tvosArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"nonAndroidMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "tvosSimulatorArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"nonAndroidMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "tvosX64ApiElements",
|
||||
"sourceSet": [
|
||||
"nonAndroidMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "uikitArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"uikitMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"nonAndroidMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "uikitSimArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"uikitMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"nonAndroidMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "uikitX64ApiElements",
|
||||
"sourceSet": [
|
||||
"uikitMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"nonAndroidMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "wasmJsApiElements",
|
||||
"sourceSet": [
|
||||
"commonMain",
|
||||
"nonAndroidMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "wasmJsRuntimeElements",
|
||||
"sourceSet": [
|
||||
"commonMain",
|
||||
"nonAndroidMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "watchosArm32ApiElements",
|
||||
"sourceSet": [
|
||||
"nonAndroidMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "watchosArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"nonAndroidMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "watchosSimulatorArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"nonAndroidMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "watchosX64ApiElements",
|
||||
"sourceSet": [
|
||||
"nonAndroidMain",
|
||||
"commonMain"
|
||||
]
|
||||
}
|
||||
],
|
||||
"sourceSets": [
|
||||
{
|
||||
"name": "commonMain",
|
||||
"dependsOn": [],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.androidx.lifecycle:lifecycle-runtime",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.androidx.lifecycle:lifecycle-common",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "darwinMain",
|
||||
"dependsOn": [
|
||||
"nativeMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.androidx.lifecycle:lifecycle-runtime",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.androidx.lifecycle:lifecycle-common"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "darwinMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
},
|
||||
{
|
||||
"name": "jvmMain",
|
||||
"dependsOn": [
|
||||
"commonMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.androidx.lifecycle:lifecycle-runtime",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.androidx.lifecycle:lifecycle-common",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "macosMain",
|
||||
"dependsOn": [
|
||||
"darwinMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.androidx.lifecycle:lifecycle-runtime",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.androidx.lifecycle:lifecycle-common"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "macosMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
},
|
||||
{
|
||||
"name": "nativeMain",
|
||||
"dependsOn": [
|
||||
"commonMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.androidx.lifecycle:lifecycle-runtime",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.androidx.lifecycle:lifecycle-common"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "nativeMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
},
|
||||
{
|
||||
"name": "nonAndroidMain",
|
||||
"dependsOn": [
|
||||
"commonMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.androidx.lifecycle:lifecycle-runtime",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.androidx.lifecycle:lifecycle-common",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "uikitMain",
|
||||
"dependsOn": [
|
||||
"darwinMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.androidx.lifecycle:lifecycle-runtime",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.androidx.lifecycle:lifecycle-common"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "uikitMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,386 @@
|
||||
{
|
||||
"projectStructure": {
|
||||
"formatVersion": "0.3.3",
|
||||
"isPublishedAsRoot": "true",
|
||||
"variants": [
|
||||
{
|
||||
"name": "debugApiElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "debugRuntimeElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "releaseApiElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "releaseRuntimeElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "desktopApiElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain",
|
||||
"skikoMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "desktopRuntimeElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain",
|
||||
"skikoMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jsApiElements",
|
||||
"sourceSet": [
|
||||
"commonMain",
|
||||
"jsWasmMain",
|
||||
"nonJvmMain",
|
||||
"jsNativeMain",
|
||||
"skikoMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jsRuntimeElements",
|
||||
"sourceSet": [
|
||||
"commonMain",
|
||||
"jsWasmMain",
|
||||
"nonJvmMain",
|
||||
"jsNativeMain",
|
||||
"skikoMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "macosArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"macosMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"nonJvmMain",
|
||||
"jsNativeMain",
|
||||
"skikoMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "macosX64ApiElements",
|
||||
"sourceSet": [
|
||||
"macosMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"nonJvmMain",
|
||||
"jsNativeMain",
|
||||
"skikoMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "uikitArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"uikitMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"nonJvmMain",
|
||||
"jsNativeMain",
|
||||
"skikoMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "uikitSimArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"uikitMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"nonJvmMain",
|
||||
"jsNativeMain",
|
||||
"skikoMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "uikitX64ApiElements",
|
||||
"sourceSet": [
|
||||
"uikitMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"nonJvmMain",
|
||||
"jsNativeMain",
|
||||
"skikoMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "wasmJsApiElements",
|
||||
"sourceSet": [
|
||||
"commonMain",
|
||||
"jsWasmMain",
|
||||
"nonJvmMain",
|
||||
"jsNativeMain",
|
||||
"skikoMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "wasmJsRuntimeElements",
|
||||
"sourceSet": [
|
||||
"commonMain",
|
||||
"jsWasmMain",
|
||||
"nonJvmMain",
|
||||
"jsNativeMain",
|
||||
"skikoMain"
|
||||
]
|
||||
}
|
||||
],
|
||||
"sourceSets": [
|
||||
{
|
||||
"name": "commonMain",
|
||||
"dependsOn": [],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.foundation:foundation",
|
||||
"org.jetbrains.compose.material:material-ripple",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.ui:ui-graphics",
|
||||
"org.jetbrains.compose.ui:ui-text",
|
||||
"org.jetbrains.kotlinx:atomicfu",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"org.jetbrains.compose.animation:animation-core",
|
||||
"org.jetbrains.compose.ui:ui-util",
|
||||
"org.jetbrains.compose.ui:ui-backhandler",
|
||||
"org.jetbrains.compose.foundation:foundation-layout",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.collection-internal:collection"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "darwinMain",
|
||||
"dependsOn": [
|
||||
"nativeMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.foundation:foundation",
|
||||
"org.jetbrains.compose.material:material-ripple",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.ui:ui-graphics",
|
||||
"org.jetbrains.compose.ui:ui-text",
|
||||
"org.jetbrains.kotlinx:atomicfu",
|
||||
"org.jetbrains.compose.animation:animation-core",
|
||||
"org.jetbrains.compose.ui:ui-util",
|
||||
"org.jetbrains.compose.ui:ui-backhandler",
|
||||
"org.jetbrains.compose.foundation:foundation-layout",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.collection-internal:collection",
|
||||
"org.jetbrains.kotlinx:kotlinx-datetime"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "darwinMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
},
|
||||
{
|
||||
"name": "jsNativeMain",
|
||||
"dependsOn": [
|
||||
"skikoMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.foundation:foundation",
|
||||
"org.jetbrains.compose.material:material-ripple",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.ui:ui-graphics",
|
||||
"org.jetbrains.compose.ui:ui-text",
|
||||
"org.jetbrains.kotlinx:atomicfu",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"org.jetbrains.compose.animation:animation-core",
|
||||
"org.jetbrains.compose.ui:ui-util",
|
||||
"org.jetbrains.compose.ui:ui-backhandler",
|
||||
"org.jetbrains.compose.foundation:foundation-layout",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.collection-internal:collection",
|
||||
"org.jetbrains.kotlinx:kotlinx-datetime"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "jsWasmMain",
|
||||
"dependsOn": [
|
||||
"nonJvmMain",
|
||||
"jsNativeMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.foundation:foundation",
|
||||
"org.jetbrains.compose.material:material-ripple",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.ui:ui-graphics",
|
||||
"org.jetbrains.compose.ui:ui-text",
|
||||
"org.jetbrains.kotlinx:atomicfu",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"org.jetbrains.compose.animation:animation-core",
|
||||
"org.jetbrains.compose.ui:ui-util",
|
||||
"org.jetbrains.compose.ui:ui-backhandler",
|
||||
"org.jetbrains.compose.foundation:foundation-layout",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.collection-internal:collection",
|
||||
"org.jetbrains.kotlinx:kotlinx-datetime"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "jvmMain",
|
||||
"dependsOn": [
|
||||
"commonMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.foundation:foundation",
|
||||
"org.jetbrains.compose.material:material-ripple",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.ui:ui-graphics",
|
||||
"org.jetbrains.compose.ui:ui-text",
|
||||
"org.jetbrains.kotlinx:atomicfu",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"org.jetbrains.compose.animation:animation-core",
|
||||
"org.jetbrains.compose.ui:ui-util",
|
||||
"org.jetbrains.compose.ui:ui-backhandler",
|
||||
"org.jetbrains.compose.foundation:foundation-layout",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.collection-internal:collection"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "macosMain",
|
||||
"dependsOn": [
|
||||
"darwinMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.foundation:foundation",
|
||||
"org.jetbrains.compose.material:material-ripple",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.ui:ui-graphics",
|
||||
"org.jetbrains.compose.ui:ui-text",
|
||||
"org.jetbrains.kotlinx:atomicfu",
|
||||
"org.jetbrains.compose.animation:animation-core",
|
||||
"org.jetbrains.compose.ui:ui-util",
|
||||
"org.jetbrains.compose.ui:ui-backhandler",
|
||||
"org.jetbrains.compose.foundation:foundation-layout",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.collection-internal:collection",
|
||||
"org.jetbrains.kotlinx:kotlinx-datetime"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "macosMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
},
|
||||
{
|
||||
"name": "nativeMain",
|
||||
"dependsOn": [
|
||||
"commonMain",
|
||||
"nonJvmMain",
|
||||
"jsNativeMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.foundation:foundation",
|
||||
"org.jetbrains.compose.material:material-ripple",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.ui:ui-graphics",
|
||||
"org.jetbrains.compose.ui:ui-text",
|
||||
"org.jetbrains.kotlinx:atomicfu",
|
||||
"org.jetbrains.compose.animation:animation-core",
|
||||
"org.jetbrains.compose.ui:ui-util",
|
||||
"org.jetbrains.compose.ui:ui-backhandler",
|
||||
"org.jetbrains.compose.foundation:foundation-layout",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.collection-internal:collection",
|
||||
"org.jetbrains.kotlinx:kotlinx-datetime"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "nativeMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
},
|
||||
{
|
||||
"name": "nonJvmMain",
|
||||
"dependsOn": [
|
||||
"commonMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.foundation:foundation",
|
||||
"org.jetbrains.compose.material:material-ripple",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.ui:ui-graphics",
|
||||
"org.jetbrains.compose.ui:ui-text",
|
||||
"org.jetbrains.kotlinx:atomicfu",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"org.jetbrains.compose.animation:animation-core",
|
||||
"org.jetbrains.compose.ui:ui-util",
|
||||
"org.jetbrains.compose.ui:ui-backhandler",
|
||||
"org.jetbrains.compose.foundation:foundation-layout",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.collection-internal:collection"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "skikoMain",
|
||||
"dependsOn": [
|
||||
"commonMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.foundation:foundation",
|
||||
"org.jetbrains.compose.material:material-ripple",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.ui:ui-graphics",
|
||||
"org.jetbrains.compose.ui:ui-text",
|
||||
"org.jetbrains.kotlinx:atomicfu",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"org.jetbrains.compose.animation:animation-core",
|
||||
"org.jetbrains.compose.ui:ui-util",
|
||||
"org.jetbrains.compose.ui:ui-backhandler",
|
||||
"org.jetbrains.compose.foundation:foundation-layout",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.collection-internal:collection",
|
||||
"org.jetbrains.kotlinx:kotlinx-datetime"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "uikitMain",
|
||||
"dependsOn": [
|
||||
"darwinMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.foundation:foundation",
|
||||
"org.jetbrains.compose.material:material-ripple",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.ui:ui-graphics",
|
||||
"org.jetbrains.compose.ui:ui-text",
|
||||
"org.jetbrains.kotlinx:atomicfu",
|
||||
"org.jetbrains.compose.animation:animation-core",
|
||||
"org.jetbrains.compose.ui:ui-util",
|
||||
"org.jetbrains.compose.ui:ui-backhandler",
|
||||
"org.jetbrains.compose.foundation:foundation-layout",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.collection-internal:collection",
|
||||
"org.jetbrains.kotlinx:kotlinx-datetime"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "uikitMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,259 @@
|
||||
{
|
||||
"projectStructure": {
|
||||
"formatVersion": "0.3.3",
|
||||
"isPublishedAsRoot": "true",
|
||||
"variants": [
|
||||
{
|
||||
"name": "debugApiElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "debugRuntimeElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "releaseApiElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "releaseRuntimeElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "desktopApiElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain",
|
||||
"jbMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "desktopRuntimeElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain",
|
||||
"jbMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jsApiElements",
|
||||
"sourceSet": [
|
||||
"commonMain",
|
||||
"jsWasmMain",
|
||||
"jbMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jsRuntimeElements",
|
||||
"sourceSet": [
|
||||
"commonMain",
|
||||
"jsWasmMain",
|
||||
"jbMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "macosArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"macosMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"jbMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "macosX64ApiElements",
|
||||
"sourceSet": [
|
||||
"macosMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"jbMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "uikitArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"uikitMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"jbMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "uikitSimArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"uikitMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"jbMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "uikitX64ApiElements",
|
||||
"sourceSet": [
|
||||
"uikitMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"jbMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "wasmJsApiElements",
|
||||
"sourceSet": [
|
||||
"commonMain",
|
||||
"jsWasmMain",
|
||||
"jbMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "wasmJsRuntimeElements",
|
||||
"sourceSet": [
|
||||
"commonMain",
|
||||
"jsWasmMain",
|
||||
"jbMain"
|
||||
]
|
||||
}
|
||||
],
|
||||
"sourceSets": [
|
||||
{
|
||||
"name": "commonMain",
|
||||
"dependsOn": [],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.foundation:foundation",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"org.jetbrains.compose.collection-internal:collection",
|
||||
"org.jetbrains.compose.animation:animation",
|
||||
"org.jetbrains.compose.ui:ui-util"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "darwinMain",
|
||||
"dependsOn": [
|
||||
"nativeMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.foundation:foundation",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.collection-internal:collection",
|
||||
"org.jetbrains.compose.animation:animation",
|
||||
"org.jetbrains.compose.ui:ui-util"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "darwinMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
},
|
||||
{
|
||||
"name": "jbMain",
|
||||
"dependsOn": [
|
||||
"commonMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.foundation:foundation",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"org.jetbrains.compose.collection-internal:collection",
|
||||
"org.jetbrains.compose.animation:animation",
|
||||
"org.jetbrains.compose.ui:ui-util"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "jsWasmMain",
|
||||
"dependsOn": [
|
||||
"jbMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.foundation:foundation",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"org.jetbrains.compose.collection-internal:collection",
|
||||
"org.jetbrains.compose.animation:animation",
|
||||
"org.jetbrains.compose.ui:ui-util"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "jvmMain",
|
||||
"dependsOn": [
|
||||
"commonMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.foundation:foundation",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"org.jetbrains.compose.collection-internal:collection",
|
||||
"org.jetbrains.compose.animation:animation",
|
||||
"org.jetbrains.compose.ui:ui-util"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "macosMain",
|
||||
"dependsOn": [
|
||||
"darwinMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.foundation:foundation",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.collection-internal:collection",
|
||||
"org.jetbrains.compose.animation:animation",
|
||||
"org.jetbrains.compose.ui:ui-util"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "macosMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
},
|
||||
{
|
||||
"name": "nativeMain",
|
||||
"dependsOn": [
|
||||
"commonMain",
|
||||
"jbMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.foundation:foundation",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.collection-internal:collection",
|
||||
"org.jetbrains.compose.animation:animation",
|
||||
"org.jetbrains.compose.ui:ui-util"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "nativeMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
},
|
||||
{
|
||||
"name": "uikitMain",
|
||||
"dependsOn": [
|
||||
"darwinMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.foundation:foundation",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.collection-internal:collection",
|
||||
"org.jetbrains.compose.animation:animation",
|
||||
"org.jetbrains.compose.ui:ui-util"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "uikitMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,454 @@
|
||||
{
|
||||
"projectStructure": {
|
||||
"formatVersion": "0.3.3",
|
||||
"isPublishedAsRoot": "true",
|
||||
"variants": [
|
||||
{
|
||||
"name": "debugApiElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "debugRuntimeElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "releaseApiElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "releaseRuntimeElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "desktopApiElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain",
|
||||
"nonAndroidMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "desktopRuntimeElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain",
|
||||
"nonAndroidMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jsApiElements",
|
||||
"sourceSet": [
|
||||
"commonMain",
|
||||
"webMain",
|
||||
"nonAndroidMain",
|
||||
"nonJvmMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jsRuntimeElements",
|
||||
"sourceSet": [
|
||||
"commonMain",
|
||||
"webMain",
|
||||
"nonAndroidMain",
|
||||
"nonJvmMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "linuxArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"linuxMain",
|
||||
"posixMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"nonAndroidMain",
|
||||
"nonJvmMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "linuxX64ApiElements",
|
||||
"sourceSet": [
|
||||
"linuxMain",
|
||||
"posixMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"nonAndroidMain",
|
||||
"nonJvmMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "macosArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"macosMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"nonAndroidMain",
|
||||
"nonJvmMain",
|
||||
"posixMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "macosX64ApiElements",
|
||||
"sourceSet": [
|
||||
"macosMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"nonAndroidMain",
|
||||
"nonJvmMain",
|
||||
"posixMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "mingwX64ApiElements",
|
||||
"sourceSet": [
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"nonAndroidMain",
|
||||
"nonJvmMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "tvosArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"tvOsMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"nonAndroidMain",
|
||||
"nonJvmMain",
|
||||
"posixMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "tvosSimulatorArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"tvOsMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"nonAndroidMain",
|
||||
"nonJvmMain",
|
||||
"posixMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "tvosX64ApiElements",
|
||||
"sourceSet": [
|
||||
"tvOsMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"nonAndroidMain",
|
||||
"nonJvmMain",
|
||||
"posixMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "uikitArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"uikitMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"nonAndroidMain",
|
||||
"nonJvmMain",
|
||||
"posixMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "uikitSimArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"uikitMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"nonAndroidMain",
|
||||
"nonJvmMain",
|
||||
"posixMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "uikitX64ApiElements",
|
||||
"sourceSet": [
|
||||
"uikitMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"nonAndroidMain",
|
||||
"nonJvmMain",
|
||||
"posixMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "wasmJsApiElements",
|
||||
"sourceSet": [
|
||||
"commonMain",
|
||||
"webMain",
|
||||
"nonAndroidMain",
|
||||
"nonJvmMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "wasmJsRuntimeElements",
|
||||
"sourceSet": [
|
||||
"commonMain",
|
||||
"webMain",
|
||||
"nonAndroidMain",
|
||||
"nonJvmMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "watchosArm32ApiElements",
|
||||
"sourceSet": [
|
||||
"watchOsMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"nonAndroidMain",
|
||||
"nonJvmMain",
|
||||
"posixMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "watchosArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"watchOsMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"nonAndroidMain",
|
||||
"nonJvmMain",
|
||||
"posixMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "watchosSimulatorArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"watchOsMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"nonAndroidMain",
|
||||
"nonJvmMain",
|
||||
"posixMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "watchosX64ApiElements",
|
||||
"sourceSet": [
|
||||
"watchOsMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"nonAndroidMain",
|
||||
"nonJvmMain",
|
||||
"posixMain"
|
||||
]
|
||||
}
|
||||
],
|
||||
"sourceSets": [
|
||||
{
|
||||
"name": "commonMain",
|
||||
"dependsOn": [],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||
"org.jetbrains.kotlinx:atomicfu",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.collection-internal:collection"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "darwinMain",
|
||||
"dependsOn": [
|
||||
"nativeMain",
|
||||
"posixMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||
"org.jetbrains.kotlinx:atomicfu",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.collection-internal:collection"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "darwinMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
},
|
||||
{
|
||||
"name": "jvmMain",
|
||||
"dependsOn": [
|
||||
"commonMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||
"org.jetbrains.kotlinx:atomicfu",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.collection-internal:collection"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "linuxMain",
|
||||
"dependsOn": [
|
||||
"posixMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||
"org.jetbrains.kotlinx:atomicfu",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.collection-internal:collection"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "linuxMain-cinterop",
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "macosMain",
|
||||
"dependsOn": [
|
||||
"darwinMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||
"org.jetbrains.kotlinx:atomicfu",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.collection-internal:collection"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "macosMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
},
|
||||
{
|
||||
"name": "nativeMain",
|
||||
"dependsOn": [
|
||||
"commonMain",
|
||||
"nonAndroidMain",
|
||||
"nonJvmMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||
"org.jetbrains.kotlinx:atomicfu",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.collection-internal:collection"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "nativeMain-cinterop",
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "nonAndroidMain",
|
||||
"dependsOn": [
|
||||
"commonMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||
"org.jetbrains.kotlinx:atomicfu",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.collection-internal:collection"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "nonJvmMain",
|
||||
"dependsOn": [
|
||||
"commonMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||
"org.jetbrains.kotlinx:atomicfu",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.collection-internal:collection"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "posixMain",
|
||||
"dependsOn": [
|
||||
"nativeMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||
"org.jetbrains.kotlinx:atomicfu",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.collection-internal:collection"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "posixMain-cinterop",
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "tvOsMain",
|
||||
"dependsOn": [
|
||||
"darwinMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||
"org.jetbrains.kotlinx:atomicfu",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.collection-internal:collection"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "tvOsMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
},
|
||||
{
|
||||
"name": "uikitMain",
|
||||
"dependsOn": [
|
||||
"darwinMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||
"org.jetbrains.kotlinx:atomicfu",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.collection-internal:collection"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "uikitMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
},
|
||||
{
|
||||
"name": "watchOsMain",
|
||||
"dependsOn": [
|
||||
"darwinMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||
"org.jetbrains.kotlinx:atomicfu",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.collection-internal:collection"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "watchOsMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
},
|
||||
{
|
||||
"name": "webMain",
|
||||
"dependsOn": [
|
||||
"nonAndroidMain",
|
||||
"nonJvmMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||
"org.jetbrains.kotlinx:atomicfu",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.collection-internal:collection"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,273 @@
|
||||
{
|
||||
"projectStructure": {
|
||||
"formatVersion": "0.3.3",
|
||||
"isPublishedAsRoot": "true",
|
||||
"variants": [
|
||||
{
|
||||
"name": "debugApiElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "debugRuntimeElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "releaseApiElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "releaseRuntimeElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "desktopApiElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "desktopRuntimeElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jsApiElements",
|
||||
"sourceSet": [
|
||||
"commonMain",
|
||||
"jsWasmMain",
|
||||
"jsNativeMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jsRuntimeElements",
|
||||
"sourceSet": [
|
||||
"commonMain",
|
||||
"jsWasmMain",
|
||||
"jsNativeMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "macosArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"macosMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"jsNativeMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "macosX64ApiElements",
|
||||
"sourceSet": [
|
||||
"macosMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"jsNativeMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "uikitArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"uikitMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"jsNativeMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "uikitSimArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"uikitMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"jsNativeMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "uikitX64ApiElements",
|
||||
"sourceSet": [
|
||||
"uikitMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"jsNativeMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "wasmJsApiElements",
|
||||
"sourceSet": [
|
||||
"commonMain",
|
||||
"jsWasmMain",
|
||||
"jsNativeMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "wasmJsRuntimeElements",
|
||||
"sourceSet": [
|
||||
"commonMain",
|
||||
"jsWasmMain",
|
||||
"jsNativeMain"
|
||||
]
|
||||
}
|
||||
],
|
||||
"sourceSets": [
|
||||
{
|
||||
"name": "commonMain",
|
||||
"dependsOn": [],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.animation:animation-core",
|
||||
"org.jetbrains.compose.foundation:foundation-layout",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.ui:ui",
|
||||
"org.jetbrains.compose.ui:ui-geometry",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"org.jetbrains.compose.collection-internal:collection",
|
||||
"org.jetbrains.compose.ui:ui-util"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "darwinMain",
|
||||
"dependsOn": [
|
||||
"nativeMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.animation:animation-core",
|
||||
"org.jetbrains.compose.foundation:foundation-layout",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.ui:ui",
|
||||
"org.jetbrains.compose.ui:ui-geometry",
|
||||
"org.jetbrains.compose.collection-internal:collection",
|
||||
"org.jetbrains.compose.ui:ui-util"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "darwinMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
},
|
||||
{
|
||||
"name": "jsNativeMain",
|
||||
"dependsOn": [
|
||||
"commonMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.animation:animation-core",
|
||||
"org.jetbrains.compose.foundation:foundation-layout",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.ui:ui",
|
||||
"org.jetbrains.compose.ui:ui-geometry",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"org.jetbrains.compose.collection-internal:collection",
|
||||
"org.jetbrains.compose.ui:ui-util"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "jsWasmMain",
|
||||
"dependsOn": [
|
||||
"jsNativeMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.animation:animation-core",
|
||||
"org.jetbrains.compose.foundation:foundation-layout",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.ui:ui",
|
||||
"org.jetbrains.compose.ui:ui-geometry",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"org.jetbrains.compose.collection-internal:collection",
|
||||
"org.jetbrains.compose.ui:ui-util"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "jvmMain",
|
||||
"dependsOn": [
|
||||
"commonMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.animation:animation-core",
|
||||
"org.jetbrains.compose.foundation:foundation-layout",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.ui:ui",
|
||||
"org.jetbrains.compose.ui:ui-geometry",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"org.jetbrains.compose.collection-internal:collection",
|
||||
"org.jetbrains.compose.ui:ui-util"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "macosMain",
|
||||
"dependsOn": [
|
||||
"darwinMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.animation:animation-core",
|
||||
"org.jetbrains.compose.foundation:foundation-layout",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.ui:ui",
|
||||
"org.jetbrains.compose.ui:ui-geometry",
|
||||
"org.jetbrains.compose.collection-internal:collection",
|
||||
"org.jetbrains.compose.ui:ui-util"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "macosMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
},
|
||||
{
|
||||
"name": "nativeMain",
|
||||
"dependsOn": [
|
||||
"commonMain",
|
||||
"jsNativeMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.animation:animation-core",
|
||||
"org.jetbrains.compose.foundation:foundation-layout",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.ui:ui",
|
||||
"org.jetbrains.compose.ui:ui-geometry",
|
||||
"org.jetbrains.compose.collection-internal:collection",
|
||||
"org.jetbrains.compose.ui:ui-util"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "nativeMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
},
|
||||
{
|
||||
"name": "uikitMain",
|
||||
"dependsOn": [
|
||||
"darwinMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.animation:animation-core",
|
||||
"org.jetbrains.compose.foundation:foundation-layout",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.ui:ui",
|
||||
"org.jetbrains.compose.ui:ui-geometry",
|
||||
"org.jetbrains.compose.collection-internal:collection",
|
||||
"org.jetbrains.compose.ui:ui-util"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "uikitMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,324 @@
|
||||
{
|
||||
"projectStructure": {
|
||||
"formatVersion": "0.3.3",
|
||||
"isPublishedAsRoot": "true",
|
||||
"variants": [
|
||||
{
|
||||
"name": "debugApiElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "debugRuntimeElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "releaseApiElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "releaseRuntimeElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "desktopApiElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain",
|
||||
"skikoExcludingWebMain",
|
||||
"skikoMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "desktopRuntimeElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain",
|
||||
"skikoExcludingWebMain",
|
||||
"skikoMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jsApiElements",
|
||||
"sourceSet": [
|
||||
"commonMain",
|
||||
"jsWasmMain",
|
||||
"jsNativeMain",
|
||||
"skikoMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jsRuntimeElements",
|
||||
"sourceSet": [
|
||||
"commonMain",
|
||||
"jsWasmMain",
|
||||
"jsNativeMain",
|
||||
"skikoMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "macosArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"macosMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"jsNativeMain",
|
||||
"skikoMain",
|
||||
"skikoExcludingWebMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "macosX64ApiElements",
|
||||
"sourceSet": [
|
||||
"macosMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"jsNativeMain",
|
||||
"skikoMain",
|
||||
"skikoExcludingWebMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "uikitArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"uikitMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"jsNativeMain",
|
||||
"skikoMain",
|
||||
"skikoExcludingWebMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "uikitSimArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"uikitMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"jsNativeMain",
|
||||
"skikoMain",
|
||||
"skikoExcludingWebMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "uikitX64ApiElements",
|
||||
"sourceSet": [
|
||||
"uikitMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"jsNativeMain",
|
||||
"skikoMain",
|
||||
"skikoExcludingWebMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "wasmJsApiElements",
|
||||
"sourceSet": [
|
||||
"commonMain",
|
||||
"jsWasmMain",
|
||||
"jsNativeMain",
|
||||
"skikoMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "wasmJsRuntimeElements",
|
||||
"sourceSet": [
|
||||
"commonMain",
|
||||
"jsWasmMain",
|
||||
"jsNativeMain",
|
||||
"skikoMain"
|
||||
]
|
||||
}
|
||||
],
|
||||
"sourceSets": [
|
||||
{
|
||||
"name": "commonMain",
|
||||
"dependsOn": [],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.ui:ui-unit",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.ui:ui-util",
|
||||
"org.jetbrains.compose.ui:ui-geometry",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.collection-internal:collection"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "darwinMain",
|
||||
"dependsOn": [
|
||||
"nativeMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.ui:ui-unit",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.ui:ui-util",
|
||||
"org.jetbrains.compose.ui:ui-geometry",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.collection-internal:collection",
|
||||
"org.jetbrains.skiko:skiko"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "darwinMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
},
|
||||
{
|
||||
"name": "jsNativeMain",
|
||||
"dependsOn": [
|
||||
"skikoMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.ui:ui-unit",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.ui:ui-util",
|
||||
"org.jetbrains.compose.ui:ui-geometry",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.collection-internal:collection",
|
||||
"org.jetbrains.skiko:skiko"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "jsWasmMain",
|
||||
"dependsOn": [
|
||||
"jsNativeMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.ui:ui-unit",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.ui:ui-util",
|
||||
"org.jetbrains.compose.ui:ui-geometry",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.collection-internal:collection",
|
||||
"org.jetbrains.skiko:skiko"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "jvmMain",
|
||||
"dependsOn": [
|
||||
"commonMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.ui:ui-unit",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.ui:ui-util",
|
||||
"org.jetbrains.compose.ui:ui-geometry",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.collection-internal:collection"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "macosMain",
|
||||
"dependsOn": [
|
||||
"darwinMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.ui:ui-unit",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.ui:ui-util",
|
||||
"org.jetbrains.compose.ui:ui-geometry",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.collection-internal:collection",
|
||||
"org.jetbrains.skiko:skiko"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "macosMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
},
|
||||
{
|
||||
"name": "nativeMain",
|
||||
"dependsOn": [
|
||||
"commonMain",
|
||||
"jsNativeMain",
|
||||
"skikoExcludingWebMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.ui:ui-unit",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.ui:ui-util",
|
||||
"org.jetbrains.compose.ui:ui-geometry",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.collection-internal:collection",
|
||||
"org.jetbrains.skiko:skiko"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "nativeMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
},
|
||||
{
|
||||
"name": "skikoExcludingWebMain",
|
||||
"dependsOn": [
|
||||
"skikoMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.ui:ui-unit",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.ui:ui-util",
|
||||
"org.jetbrains.compose.ui:ui-geometry",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.collection-internal:collection",
|
||||
"org.jetbrains.skiko:skiko"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "skikoMain",
|
||||
"dependsOn": [
|
||||
"commonMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.ui:ui-unit",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.ui:ui-util",
|
||||
"org.jetbrains.compose.ui:ui-geometry",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.collection-internal:collection",
|
||||
"org.jetbrains.skiko:skiko"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "uikitMain",
|
||||
"dependsOn": [
|
||||
"darwinMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.ui:ui-unit",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.ui:ui-util",
|
||||
"org.jetbrains.compose.ui:ui-geometry",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.collection-internal:collection",
|
||||
"org.jetbrains.skiko:skiko"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "uikitMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,444 @@
|
||||
{
|
||||
"projectStructure": {
|
||||
"formatVersion": "0.3.3",
|
||||
"isPublishedAsRoot": "true",
|
||||
"variants": [
|
||||
{
|
||||
"name": "androidNativeArm32ApiElements",
|
||||
"sourceSet": [
|
||||
"androidNativeMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"concurrentMain",
|
||||
"nativeOtherMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "androidNativeArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"androidNativeMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"concurrentMain",
|
||||
"nativeOtherMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "androidNativeX64ApiElements",
|
||||
"sourceSet": [
|
||||
"androidNativeMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"concurrentMain",
|
||||
"nativeOtherMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "androidNativeX86ApiElements",
|
||||
"sourceSet": [
|
||||
"androidNativeMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"concurrentMain",
|
||||
"nativeOtherMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "iosArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"iosMain",
|
||||
"appleMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"concurrentMain",
|
||||
"nativeDarwinMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "iosSimulatorArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"iosMain",
|
||||
"appleMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"concurrentMain",
|
||||
"nativeDarwinMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "iosX64ApiElements",
|
||||
"sourceSet": [
|
||||
"iosMain",
|
||||
"appleMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"concurrentMain",
|
||||
"nativeDarwinMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jsApiElements",
|
||||
"sourceSet": [
|
||||
"commonMain",
|
||||
"jsAndWasmJsSharedMain",
|
||||
"jsAndWasmSharedMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jsRuntimeElements",
|
||||
"sourceSet": [
|
||||
"commonMain",
|
||||
"jsAndWasmJsSharedMain",
|
||||
"jsAndWasmSharedMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jvmApiElements",
|
||||
"sourceSet": [
|
||||
"commonMain",
|
||||
"concurrentMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jvmRuntimeElements",
|
||||
"sourceSet": [
|
||||
"commonMain",
|
||||
"concurrentMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "linuxArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"linuxMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"concurrentMain",
|
||||
"nativeOtherMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "linuxX64ApiElements",
|
||||
"sourceSet": [
|
||||
"linuxMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"concurrentMain",
|
||||
"nativeOtherMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "macosArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"macosMain",
|
||||
"appleMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"concurrentMain",
|
||||
"nativeDarwinMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "macosX64ApiElements",
|
||||
"sourceSet": [
|
||||
"macosMain",
|
||||
"appleMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"concurrentMain",
|
||||
"nativeDarwinMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "mingwX64ApiElements",
|
||||
"sourceSet": [
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"concurrentMain",
|
||||
"nativeOtherMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "tvosArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"tvosMain",
|
||||
"appleMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"concurrentMain",
|
||||
"nativeDarwinMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "tvosSimulatorArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"tvosMain",
|
||||
"appleMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"concurrentMain",
|
||||
"nativeDarwinMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "tvosX64ApiElements",
|
||||
"sourceSet": [
|
||||
"tvosMain",
|
||||
"appleMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"concurrentMain",
|
||||
"nativeDarwinMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "wasmJsApiElements",
|
||||
"sourceSet": [
|
||||
"commonMain",
|
||||
"jsAndWasmJsSharedMain",
|
||||
"jsAndWasmSharedMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "wasmJsRuntimeElements",
|
||||
"sourceSet": [
|
||||
"commonMain",
|
||||
"jsAndWasmJsSharedMain",
|
||||
"jsAndWasmSharedMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "wasmWasiApiElements",
|
||||
"sourceSet": [
|
||||
"commonMain",
|
||||
"jsAndWasmSharedMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "wasmWasiRuntimeElements",
|
||||
"sourceSet": [
|
||||
"commonMain",
|
||||
"jsAndWasmSharedMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "watchosArm32ApiElements",
|
||||
"sourceSet": [
|
||||
"watchosMain",
|
||||
"appleMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"concurrentMain",
|
||||
"nativeDarwinMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "watchosArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"watchosMain",
|
||||
"appleMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"concurrentMain",
|
||||
"nativeDarwinMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "watchosDeviceArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"watchosMain",
|
||||
"appleMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"concurrentMain",
|
||||
"nativeDarwinMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "watchosSimulatorArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"watchosMain",
|
||||
"appleMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"concurrentMain",
|
||||
"nativeDarwinMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "watchosX64ApiElements",
|
||||
"sourceSet": [
|
||||
"watchosMain",
|
||||
"appleMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"concurrentMain",
|
||||
"nativeDarwinMain"
|
||||
]
|
||||
}
|
||||
],
|
||||
"sourceSets": [
|
||||
{
|
||||
"name": "androidNativeMain",
|
||||
"dependsOn": [
|
||||
"nativeMain",
|
||||
"nativeOtherMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlinx:atomicfu",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "androidNativeMain-cinterop",
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "appleMain",
|
||||
"dependsOn": [
|
||||
"nativeMain",
|
||||
"nativeDarwinMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlinx:atomicfu",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "appleMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
},
|
||||
{
|
||||
"name": "commonMain",
|
||||
"dependsOn": [],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "concurrentMain",
|
||||
"dependsOn": [
|
||||
"commonMain"
|
||||
],
|
||||
"moduleDependency": [],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "iosMain",
|
||||
"dependsOn": [
|
||||
"appleMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlinx:atomicfu",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "iosMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
},
|
||||
{
|
||||
"name": "jsAndWasmJsSharedMain",
|
||||
"dependsOn": [
|
||||
"jsAndWasmSharedMain"
|
||||
],
|
||||
"moduleDependency": [],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "jsAndWasmSharedMain",
|
||||
"dependsOn": [
|
||||
"commonMain"
|
||||
],
|
||||
"moduleDependency": [],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "linuxMain",
|
||||
"dependsOn": [
|
||||
"nativeMain",
|
||||
"nativeOtherMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlinx:atomicfu",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "linuxMain-cinterop",
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "macosMain",
|
||||
"dependsOn": [
|
||||
"appleMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlinx:atomicfu",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "macosMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
},
|
||||
{
|
||||
"name": "nativeDarwinMain",
|
||||
"dependsOn": [
|
||||
"nativeMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlinx:atomicfu",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "nativeDarwinMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
},
|
||||
{
|
||||
"name": "nativeMain",
|
||||
"dependsOn": [
|
||||
"commonMain",
|
||||
"concurrentMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"org.jetbrains.kotlinx:atomicfu"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "nativeMain-cinterop",
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "nativeOtherMain",
|
||||
"dependsOn": [
|
||||
"nativeMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlinx:atomicfu",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "nativeOtherMain-cinterop",
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "tvosMain",
|
||||
"dependsOn": [
|
||||
"appleMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlinx:atomicfu",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "tvosMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
},
|
||||
{
|
||||
"name": "watchosMain",
|
||||
"dependsOn": [
|
||||
"appleMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlinx:atomicfu",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "watchosMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,70 @@
|
||||
{
|
||||
"projectStructure": {
|
||||
"formatVersion": "0.3.3",
|
||||
"isPublishedAsRoot": "true",
|
||||
"variants": [
|
||||
{
|
||||
"name": "jsApiElements",
|
||||
"sourceSet": [
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jsRuntimeElements",
|
||||
"sourceSet": [
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jvmApiElements",
|
||||
"sourceSet": [
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jvmRuntimeElements",
|
||||
"sourceSet": [
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "nativeApiElements",
|
||||
"sourceSet": [
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "wasmJsApiElements",
|
||||
"sourceSet": [
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "wasmJsRuntimeElements",
|
||||
"sourceSet": [
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "wasmWasiApiElements",
|
||||
"sourceSet": [
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "wasmWasiRuntimeElements",
|
||||
"sourceSet": [
|
||||
"commonMain"
|
||||
]
|
||||
}
|
||||
],
|
||||
"sourceSets": [
|
||||
{
|
||||
"name": "commonMain",
|
||||
"dependsOn": [],
|
||||
"moduleDependency": [],
|
||||
"binaryLayout": "klib"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,348 @@
|
||||
{
|
||||
"projectStructure": {
|
||||
"formatVersion": "0.3.3",
|
||||
"isPublishedAsRoot": "true",
|
||||
"variants": [
|
||||
{
|
||||
"name": "androidNativeArm32ApiElements",
|
||||
"sourceSet": [
|
||||
"androidNativeMain",
|
||||
"nativeMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "androidNativeArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"androidNativeMain",
|
||||
"nativeMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "androidNativeX64ApiElements",
|
||||
"sourceSet": [
|
||||
"androidNativeMain",
|
||||
"nativeMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "androidNativeX86ApiElements",
|
||||
"sourceSet": [
|
||||
"androidNativeMain",
|
||||
"nativeMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "iosArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"iosMain",
|
||||
"appleMain",
|
||||
"nativeMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "iosSimulatorArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"iosMain",
|
||||
"appleMain",
|
||||
"nativeMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "iosX64ApiElements",
|
||||
"sourceSet": [
|
||||
"iosMain",
|
||||
"appleMain",
|
||||
"nativeMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jsApiElements",
|
||||
"sourceSet": [
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jsRuntimeElements",
|
||||
"sourceSet": [
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jvmApiElements",
|
||||
"sourceSet": [
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jvmRuntimeElements",
|
||||
"sourceSet": [
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "linuxArm32HfpApiElements",
|
||||
"sourceSet": [
|
||||
"linuxMain",
|
||||
"nativeMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "linuxArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"linuxMain",
|
||||
"nativeMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "linuxX64ApiElements",
|
||||
"sourceSet": [
|
||||
"linuxMain",
|
||||
"nativeMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "macosArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"macosMain",
|
||||
"appleMain",
|
||||
"nativeMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "macosX64ApiElements",
|
||||
"sourceSet": [
|
||||
"macosMain",
|
||||
"appleMain",
|
||||
"nativeMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "mingwX64ApiElements",
|
||||
"sourceSet": [
|
||||
"nativeMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "tvosArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"tvosMain",
|
||||
"appleMain",
|
||||
"nativeMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "tvosSimulatorArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"tvosMain",
|
||||
"appleMain",
|
||||
"nativeMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "tvosX64ApiElements",
|
||||
"sourceSet": [
|
||||
"tvosMain",
|
||||
"appleMain",
|
||||
"nativeMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "wasmJsApiElements",
|
||||
"sourceSet": [
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "wasmJsRuntimeElements",
|
||||
"sourceSet": [
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "wasmWasiApiElements",
|
||||
"sourceSet": [
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "wasmWasiRuntimeElements",
|
||||
"sourceSet": [
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "watchosArm32ApiElements",
|
||||
"sourceSet": [
|
||||
"watchosMain",
|
||||
"appleMain",
|
||||
"nativeMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "watchosArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"watchosMain",
|
||||
"appleMain",
|
||||
"nativeMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "watchosDeviceArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"watchosMain",
|
||||
"appleMain",
|
||||
"nativeMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "watchosSimulatorArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"watchosMain",
|
||||
"appleMain",
|
||||
"nativeMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "watchosX64ApiElements",
|
||||
"sourceSet": [
|
||||
"watchosMain",
|
||||
"appleMain",
|
||||
"nativeMain",
|
||||
"commonMain"
|
||||
]
|
||||
}
|
||||
],
|
||||
"sourceSets": [
|
||||
{
|
||||
"name": "androidNativeMain",
|
||||
"dependsOn": [
|
||||
"nativeMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlin:kotlin-stdlib-common",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "androidNativeMain-cinterop",
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "appleMain",
|
||||
"dependsOn": [
|
||||
"nativeMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlin:kotlin-stdlib-common",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "appleMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
},
|
||||
{
|
||||
"name": "commonMain",
|
||||
"dependsOn": [],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlin:kotlin-stdlib-common",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "iosMain",
|
||||
"dependsOn": [
|
||||
"appleMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlin:kotlin-stdlib-common",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "iosMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
},
|
||||
{
|
||||
"name": "linuxMain",
|
||||
"dependsOn": [
|
||||
"nativeMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlin:kotlin-stdlib-common",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "linuxMain-cinterop",
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "macosMain",
|
||||
"dependsOn": [
|
||||
"appleMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlin:kotlin-stdlib-common",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "macosMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
},
|
||||
{
|
||||
"name": "nativeMain",
|
||||
"dependsOn": [
|
||||
"commonMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlin:kotlin-stdlib-common",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "nativeMain-cinterop",
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "tvosMain",
|
||||
"dependsOn": [
|
||||
"appleMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlin:kotlin-stdlib-common",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "tvosMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
},
|
||||
{
|
||||
"name": "watchosMain",
|
||||
"dependsOn": [
|
||||
"appleMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlin:kotlin-stdlib-common",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "watchosMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,248 @@
|
||||
{
|
||||
"projectStructure": {
|
||||
"formatVersion": "0.3.3",
|
||||
"isPublishedAsRoot": "true",
|
||||
"variants": [
|
||||
{
|
||||
"name": "debugApiElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "debugRuntimeElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "releaseApiElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "releaseRuntimeElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "desktopApiElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain",
|
||||
"jbMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "desktopRuntimeElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain",
|
||||
"jbMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jsApiElements",
|
||||
"sourceSet": [
|
||||
"commonMain",
|
||||
"webMain",
|
||||
"nonJvmMain",
|
||||
"jbMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jsRuntimeElements",
|
||||
"sourceSet": [
|
||||
"commonMain",
|
||||
"webMain",
|
||||
"nonJvmMain",
|
||||
"jbMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "macosArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"macosMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"nonJvmMain",
|
||||
"jbMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "macosX64ApiElements",
|
||||
"sourceSet": [
|
||||
"macosMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"nonJvmMain",
|
||||
"jbMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "uikitArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"uikitMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"nonJvmMain",
|
||||
"jbMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "uikitSimArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"uikitMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"nonJvmMain",
|
||||
"jbMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "uikitX64ApiElements",
|
||||
"sourceSet": [
|
||||
"uikitMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"nonJvmMain",
|
||||
"jbMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "wasmJsApiElements",
|
||||
"sourceSet": [
|
||||
"commonMain",
|
||||
"webMain",
|
||||
"nonJvmMain",
|
||||
"jbMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "wasmJsRuntimeElements",
|
||||
"sourceSet": [
|
||||
"commonMain",
|
||||
"webMain",
|
||||
"nonJvmMain",
|
||||
"jbMain"
|
||||
]
|
||||
}
|
||||
],
|
||||
"sourceSets": [
|
||||
{
|
||||
"name": "commonMain",
|
||||
"dependsOn": [],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"org.jetbrains.compose.collection-internal:collection"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "darwinMain",
|
||||
"dependsOn": [
|
||||
"nativeMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.collection-internal:collection"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "darwinMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
},
|
||||
{
|
||||
"name": "jbMain",
|
||||
"dependsOn": [
|
||||
"commonMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"org.jetbrains.compose.collection-internal:collection"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "jvmMain",
|
||||
"dependsOn": [
|
||||
"commonMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"org.jetbrains.compose.collection-internal:collection"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "macosMain",
|
||||
"dependsOn": [
|
||||
"darwinMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.collection-internal:collection"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "macosMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
},
|
||||
{
|
||||
"name": "nativeMain",
|
||||
"dependsOn": [
|
||||
"commonMain",
|
||||
"nonJvmMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.collection-internal:collection"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "nativeMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
},
|
||||
{
|
||||
"name": "nonJvmMain",
|
||||
"dependsOn": [
|
||||
"jbMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"org.jetbrains.compose.collection-internal:collection"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "uikitMain",
|
||||
"dependsOn": [
|
||||
"darwinMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.collection-internal:collection",
|
||||
"org.jetbrains.compose.ui:ui-uikit"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "uikitMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
},
|
||||
{
|
||||
"name": "webMain",
|
||||
"dependsOn": [
|
||||
"nonJvmMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"org.jetbrains.compose.collection-internal:collection"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,152 @@
|
||||
{
|
||||
"projectStructure": {
|
||||
"formatVersion": "0.3.3",
|
||||
"isPublishedAsRoot": "true",
|
||||
"variants": [
|
||||
{
|
||||
"name": "jsApiElements",
|
||||
"sourceSet": [
|
||||
"assertionsCommonMain",
|
||||
"commonMain",
|
||||
"annotationsCommonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jsRuntimeElements",
|
||||
"sourceSet": [
|
||||
"assertionsCommonMain",
|
||||
"commonMain",
|
||||
"annotationsCommonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jvmApiElements",
|
||||
"sourceSet": [
|
||||
"assertionsCommonMain",
|
||||
"commonMain",
|
||||
"annotationsCommonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jvmRuntimeElements",
|
||||
"sourceSet": [
|
||||
"assertionsCommonMain",
|
||||
"commonMain",
|
||||
"annotationsCommonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jvmJUnitApiElements",
|
||||
"sourceSet": [
|
||||
"annotationsCommonMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jvmJUnitRuntimeElements",
|
||||
"sourceSet": [
|
||||
"annotationsCommonMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jvmJUnit5ApiElements",
|
||||
"sourceSet": [
|
||||
"annotationsCommonMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jvmJUnit5RuntimeElements",
|
||||
"sourceSet": [
|
||||
"annotationsCommonMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jvmTestNGApiElements",
|
||||
"sourceSet": [
|
||||
"annotationsCommonMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jvmTestNGRuntimeElements",
|
||||
"sourceSet": [
|
||||
"annotationsCommonMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "nativeApiElements",
|
||||
"sourceSet": [
|
||||
"assertionsCommonMain",
|
||||
"commonMain",
|
||||
"annotationsCommonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "wasmJsApiElements",
|
||||
"sourceSet": [
|
||||
"assertionsCommonMain",
|
||||
"commonMain",
|
||||
"annotationsCommonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "wasmJsRuntimeElements",
|
||||
"sourceSet": [
|
||||
"assertionsCommonMain",
|
||||
"commonMain",
|
||||
"annotationsCommonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "wasmWasiApiElements",
|
||||
"sourceSet": [
|
||||
"assertionsCommonMain",
|
||||
"commonMain",
|
||||
"annotationsCommonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "wasmWasiRuntimeElements",
|
||||
"sourceSet": [
|
||||
"assertionsCommonMain",
|
||||
"commonMain",
|
||||
"annotationsCommonMain"
|
||||
]
|
||||
}
|
||||
],
|
||||
"sourceSets": [
|
||||
{
|
||||
"name": "annotationsCommonMain",
|
||||
"dependsOn": [
|
||||
"commonMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "assertionsCommonMain",
|
||||
"dependsOn": [
|
||||
"commonMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "commonMain",
|
||||
"dependsOn": [],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,195 @@
|
||||
{
|
||||
"projectStructure": {
|
||||
"formatVersion": "0.3.3",
|
||||
"isPublishedAsRoot": "true",
|
||||
"variants": [
|
||||
{
|
||||
"name": "debugApiElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "debugRuntimeElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "releaseApiElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "releaseRuntimeElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "desktopApiElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "desktopRuntimeElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jsApiElements",
|
||||
"sourceSet": [
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jsRuntimeElements",
|
||||
"sourceSet": [
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "macosArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"macosMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "macosX64ApiElements",
|
||||
"sourceSet": [
|
||||
"macosMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "uikitArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"uikitMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "uikitSimArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"uikitMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "uikitX64ApiElements",
|
||||
"sourceSet": [
|
||||
"uikitMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "wasmJsApiElements",
|
||||
"sourceSet": [
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "wasmJsRuntimeElements",
|
||||
"sourceSet": [
|
||||
"commonMain"
|
||||
]
|
||||
}
|
||||
],
|
||||
"sourceSets": [
|
||||
{
|
||||
"name": "commonMain",
|
||||
"dependsOn": [],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.ui:ui-util"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "darwinMain",
|
||||
"dependsOn": [
|
||||
"nativeMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.ui:ui-util"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "darwinMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
},
|
||||
{
|
||||
"name": "jvmMain",
|
||||
"dependsOn": [
|
||||
"commonMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.ui:ui-util"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "macosMain",
|
||||
"dependsOn": [
|
||||
"darwinMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.ui:ui-util"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "macosMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
},
|
||||
{
|
||||
"name": "nativeMain",
|
||||
"dependsOn": [
|
||||
"commonMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.ui:ui-util"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "nativeMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
},
|
||||
{
|
||||
"name": "uikitMain",
|
||||
"dependsOn": [
|
||||
"darwinMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.ui:ui-util"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "uikitMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,425 @@
|
||||
{
|
||||
"projectStructure": {
|
||||
"formatVersion": "0.3.3",
|
||||
"isPublishedAsRoot": "true",
|
||||
"variants": [
|
||||
{
|
||||
"name": "debugApiElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "debugRuntimeElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "releaseApiElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "releaseRuntimeElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "desktopApiElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain",
|
||||
"notMobileMain",
|
||||
"skikoMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "desktopRuntimeElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain",
|
||||
"notMobileMain",
|
||||
"skikoMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jsApiElements",
|
||||
"sourceSet": [
|
||||
"commonMain",
|
||||
"jsWasmMain",
|
||||
"jsNativeMain",
|
||||
"skikoMain",
|
||||
"notMobileMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jsRuntimeElements",
|
||||
"sourceSet": [
|
||||
"commonMain",
|
||||
"jsWasmMain",
|
||||
"jsNativeMain",
|
||||
"skikoMain",
|
||||
"notMobileMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "macosArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"macosMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"jsNativeMain",
|
||||
"skikoMain",
|
||||
"notMobileMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "macosX64ApiElements",
|
||||
"sourceSet": [
|
||||
"macosMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"jsNativeMain",
|
||||
"skikoMain",
|
||||
"notMobileMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "uikitArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"uikitMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"jsNativeMain",
|
||||
"skikoMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "uikitSimArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"uikitMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"jsNativeMain",
|
||||
"skikoMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "uikitX64ApiElements",
|
||||
"sourceSet": [
|
||||
"uikitMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"jsNativeMain",
|
||||
"skikoMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "wasmJsApiElements",
|
||||
"sourceSet": [
|
||||
"commonMain",
|
||||
"jsWasmMain",
|
||||
"jsNativeMain",
|
||||
"skikoMain",
|
||||
"notMobileMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "wasmJsRuntimeElements",
|
||||
"sourceSet": [
|
||||
"commonMain",
|
||||
"jsWasmMain",
|
||||
"jsNativeMain",
|
||||
"skikoMain",
|
||||
"notMobileMain"
|
||||
]
|
||||
}
|
||||
],
|
||||
"sourceSets": [
|
||||
{
|
||||
"name": "commonMain",
|
||||
"dependsOn": [],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.runtime:runtime-saveable",
|
||||
"org.jetbrains.compose.ui:ui-geometry",
|
||||
"org.jetbrains.compose.ui:ui-graphics",
|
||||
"org.jetbrains.compose.ui:ui-text",
|
||||
"org.jetbrains.compose.ui:ui-unit",
|
||||
"org.jetbrains.compose.ui:ui-util",
|
||||
"org.jetbrains.androidx.lifecycle:lifecycle-common",
|
||||
"org.jetbrains.kotlinx:atomicfu",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.collection-internal:collection",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.androidx.lifecycle:lifecycle-runtime",
|
||||
"org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose",
|
||||
"org.jetbrains.androidx.lifecycle:lifecycle-viewmodel"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "darwinMain",
|
||||
"dependsOn": [
|
||||
"nativeMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.runtime:runtime-saveable",
|
||||
"org.jetbrains.compose.ui:ui-geometry",
|
||||
"org.jetbrains.compose.ui:ui-graphics",
|
||||
"org.jetbrains.compose.ui:ui-text",
|
||||
"org.jetbrains.compose.ui:ui-unit",
|
||||
"org.jetbrains.compose.ui:ui-util",
|
||||
"org.jetbrains.androidx.lifecycle:lifecycle-common",
|
||||
"org.jetbrains.kotlinx:atomicfu",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.collection-internal:collection",
|
||||
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.androidx.lifecycle:lifecycle-runtime",
|
||||
"org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose",
|
||||
"org.jetbrains.androidx.lifecycle:lifecycle-viewmodel",
|
||||
"org.jetbrains.skiko:skiko",
|
||||
"org.jetbrains.compose.ui:ui-backhandler"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "darwinMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
},
|
||||
{
|
||||
"name": "jsNativeMain",
|
||||
"dependsOn": [
|
||||
"skikoMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.runtime:runtime-saveable",
|
||||
"org.jetbrains.compose.ui:ui-geometry",
|
||||
"org.jetbrains.compose.ui:ui-graphics",
|
||||
"org.jetbrains.compose.ui:ui-text",
|
||||
"org.jetbrains.compose.ui:ui-unit",
|
||||
"org.jetbrains.compose.ui:ui-util",
|
||||
"org.jetbrains.androidx.lifecycle:lifecycle-common",
|
||||
"org.jetbrains.kotlinx:atomicfu",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.collection-internal:collection",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.androidx.lifecycle:lifecycle-runtime",
|
||||
"org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose",
|
||||
"org.jetbrains.androidx.lifecycle:lifecycle-viewmodel",
|
||||
"org.jetbrains.skiko:skiko",
|
||||
"org.jetbrains.compose.ui:ui-backhandler"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "jsWasmMain",
|
||||
"dependsOn": [
|
||||
"jsNativeMain",
|
||||
"notMobileMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.runtime:runtime-saveable",
|
||||
"org.jetbrains.compose.ui:ui-geometry",
|
||||
"org.jetbrains.compose.ui:ui-graphics",
|
||||
"org.jetbrains.compose.ui:ui-text",
|
||||
"org.jetbrains.compose.ui:ui-unit",
|
||||
"org.jetbrains.compose.ui:ui-util",
|
||||
"org.jetbrains.androidx.lifecycle:lifecycle-common",
|
||||
"org.jetbrains.kotlinx:atomicfu",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.collection-internal:collection",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.androidx.lifecycle:lifecycle-runtime",
|
||||
"org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose",
|
||||
"org.jetbrains.androidx.lifecycle:lifecycle-viewmodel",
|
||||
"org.jetbrains.skiko:skiko",
|
||||
"org.jetbrains.compose.ui:ui-backhandler"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "jvmMain",
|
||||
"dependsOn": [
|
||||
"commonMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.runtime:runtime-saveable",
|
||||
"org.jetbrains.compose.ui:ui-geometry",
|
||||
"org.jetbrains.compose.ui:ui-graphics",
|
||||
"org.jetbrains.compose.ui:ui-text",
|
||||
"org.jetbrains.compose.ui:ui-unit",
|
||||
"org.jetbrains.compose.ui:ui-util",
|
||||
"org.jetbrains.androidx.lifecycle:lifecycle-common",
|
||||
"org.jetbrains.kotlinx:atomicfu",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.collection-internal:collection",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.androidx.lifecycle:lifecycle-runtime",
|
||||
"org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose",
|
||||
"org.jetbrains.androidx.lifecycle:lifecycle-viewmodel"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "macosMain",
|
||||
"dependsOn": [
|
||||
"darwinMain",
|
||||
"notMobileMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.runtime:runtime-saveable",
|
||||
"org.jetbrains.compose.ui:ui-geometry",
|
||||
"org.jetbrains.compose.ui:ui-graphics",
|
||||
"org.jetbrains.compose.ui:ui-text",
|
||||
"org.jetbrains.compose.ui:ui-unit",
|
||||
"org.jetbrains.compose.ui:ui-util",
|
||||
"org.jetbrains.androidx.lifecycle:lifecycle-common",
|
||||
"org.jetbrains.kotlinx:atomicfu",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.collection-internal:collection",
|
||||
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.androidx.lifecycle:lifecycle-runtime",
|
||||
"org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose",
|
||||
"org.jetbrains.androidx.lifecycle:lifecycle-viewmodel",
|
||||
"org.jetbrains.skiko:skiko",
|
||||
"org.jetbrains.compose.ui:ui-backhandler"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "macosMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
},
|
||||
{
|
||||
"name": "nativeMain",
|
||||
"dependsOn": [
|
||||
"commonMain",
|
||||
"jsNativeMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.runtime:runtime-saveable",
|
||||
"org.jetbrains.compose.ui:ui-geometry",
|
||||
"org.jetbrains.compose.ui:ui-graphics",
|
||||
"org.jetbrains.compose.ui:ui-text",
|
||||
"org.jetbrains.compose.ui:ui-unit",
|
||||
"org.jetbrains.compose.ui:ui-util",
|
||||
"org.jetbrains.androidx.lifecycle:lifecycle-common",
|
||||
"org.jetbrains.kotlinx:atomicfu",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.collection-internal:collection",
|
||||
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.androidx.lifecycle:lifecycle-runtime",
|
||||
"org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose",
|
||||
"org.jetbrains.androidx.lifecycle:lifecycle-viewmodel",
|
||||
"org.jetbrains.skiko:skiko",
|
||||
"org.jetbrains.compose.ui:ui-backhandler"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "nativeMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
},
|
||||
{
|
||||
"name": "notMobileMain",
|
||||
"dependsOn": [
|
||||
"skikoMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.runtime:runtime-saveable",
|
||||
"org.jetbrains.compose.ui:ui-geometry",
|
||||
"org.jetbrains.compose.ui:ui-graphics",
|
||||
"org.jetbrains.compose.ui:ui-text",
|
||||
"org.jetbrains.compose.ui:ui-unit",
|
||||
"org.jetbrains.compose.ui:ui-util",
|
||||
"org.jetbrains.androidx.lifecycle:lifecycle-common",
|
||||
"org.jetbrains.kotlinx:atomicfu",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.collection-internal:collection",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.androidx.lifecycle:lifecycle-runtime",
|
||||
"org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose",
|
||||
"org.jetbrains.androidx.lifecycle:lifecycle-viewmodel",
|
||||
"org.jetbrains.skiko:skiko",
|
||||
"org.jetbrains.compose.ui:ui-backhandler"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "skikoMain",
|
||||
"dependsOn": [
|
||||
"commonMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.runtime:runtime-saveable",
|
||||
"org.jetbrains.compose.ui:ui-geometry",
|
||||
"org.jetbrains.compose.ui:ui-graphics",
|
||||
"org.jetbrains.compose.ui:ui-text",
|
||||
"org.jetbrains.compose.ui:ui-unit",
|
||||
"org.jetbrains.compose.ui:ui-util",
|
||||
"org.jetbrains.androidx.lifecycle:lifecycle-common",
|
||||
"org.jetbrains.kotlinx:atomicfu",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.collection-internal:collection",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.androidx.lifecycle:lifecycle-runtime",
|
||||
"org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose",
|
||||
"org.jetbrains.androidx.lifecycle:lifecycle-viewmodel",
|
||||
"org.jetbrains.skiko:skiko",
|
||||
"org.jetbrains.compose.ui:ui-backhandler"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "uikitMain",
|
||||
"dependsOn": [
|
||||
"darwinMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.runtime:runtime-saveable",
|
||||
"org.jetbrains.compose.ui:ui-geometry",
|
||||
"org.jetbrains.compose.ui:ui-graphics",
|
||||
"org.jetbrains.compose.ui:ui-text",
|
||||
"org.jetbrains.compose.ui:ui-unit",
|
||||
"org.jetbrains.compose.ui:ui-util",
|
||||
"org.jetbrains.androidx.lifecycle:lifecycle-common",
|
||||
"org.jetbrains.kotlinx:atomicfu",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.collection-internal:collection",
|
||||
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.androidx.lifecycle:lifecycle-runtime",
|
||||
"org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose",
|
||||
"org.jetbrains.androidx.lifecycle:lifecycle-viewmodel",
|
||||
"org.jetbrains.skiko:skiko",
|
||||
"org.jetbrains.compose.ui:ui-backhandler",
|
||||
"org.jetbrains.compose.ui:ui-uikit"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "uikitMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,255 @@
|
||||
{
|
||||
"projectStructure": {
|
||||
"formatVersion": "0.3.3",
|
||||
"isPublishedAsRoot": "true",
|
||||
"variants": [
|
||||
{
|
||||
"name": "debugApiElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "debugRuntimeElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "releaseApiElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "releaseRuntimeElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "desktopApiElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "desktopRuntimeElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jsApiElements",
|
||||
"sourceSet": [
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jsRuntimeElements",
|
||||
"sourceSet": [
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "linuxArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "linuxX64ApiElements",
|
||||
"sourceSet": [
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "macosArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"macosMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "macosX64ApiElements",
|
||||
"sourceSet": [
|
||||
"macosMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "mingwX64ApiElements",
|
||||
"sourceSet": [
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "tvosArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "tvosSimulatorArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "tvosX64ApiElements",
|
||||
"sourceSet": [
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "uikitArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"uikitMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "uikitSimArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"uikitMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "uikitX64ApiElements",
|
||||
"sourceSet": [
|
||||
"uikitMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "wasmJsApiElements",
|
||||
"sourceSet": [
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "wasmJsRuntimeElements",
|
||||
"sourceSet": [
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "watchosArm32ApiElements",
|
||||
"sourceSet": [
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "watchosArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "watchosSimulatorArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "watchosX64ApiElements",
|
||||
"sourceSet": [
|
||||
"commonMain"
|
||||
]
|
||||
}
|
||||
],
|
||||
"sourceSets": [
|
||||
{
|
||||
"name": "commonMain",
|
||||
"dependsOn": [],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"org.jetbrains.compose.collection-internal:collection"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "darwinMain",
|
||||
"dependsOn": [
|
||||
"nativeMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.collection-internal:collection"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "darwinMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
},
|
||||
{
|
||||
"name": "jvmMain",
|
||||
"dependsOn": [
|
||||
"commonMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"org.jetbrains.compose.collection-internal:collection"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "macosMain",
|
||||
"dependsOn": [
|
||||
"darwinMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.collection-internal:collection"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "macosMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
},
|
||||
{
|
||||
"name": "nativeMain",
|
||||
"dependsOn": [
|
||||
"commonMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.collection-internal:collection"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "nativeMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
},
|
||||
{
|
||||
"name": "uikitMain",
|
||||
"dependsOn": [
|
||||
"darwinMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.collection-internal:collection"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "uikitMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,249 @@
|
||||
{
|
||||
"projectStructure": {
|
||||
"formatVersion": "0.3.3",
|
||||
"isPublishedAsRoot": "true",
|
||||
"variants": [
|
||||
{
|
||||
"name": "debugApiElements",
|
||||
"sourceSet": [
|
||||
"jvmAndAndroidMain",
|
||||
"blockingMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "debugRuntimeElements",
|
||||
"sourceSet": [
|
||||
"jvmAndAndroidMain",
|
||||
"blockingMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "releaseApiElements",
|
||||
"sourceSet": [
|
||||
"jvmAndAndroidMain",
|
||||
"blockingMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "releaseRuntimeElements",
|
||||
"sourceSet": [
|
||||
"jvmAndAndroidMain",
|
||||
"blockingMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "desktopApiElements",
|
||||
"sourceSet": [
|
||||
"commonMain",
|
||||
"skikoMain",
|
||||
"jvmAndAndroidMain",
|
||||
"blockingMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "desktopRuntimeElements",
|
||||
"sourceSet": [
|
||||
"commonMain",
|
||||
"skikoMain",
|
||||
"jvmAndAndroidMain",
|
||||
"blockingMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "iosArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"iosMain",
|
||||
"appleMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"skikoMain",
|
||||
"blockingMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "iosSimulatorArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"iosMain",
|
||||
"appleMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"skikoMain",
|
||||
"blockingMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "iosX64ApiElements",
|
||||
"sourceSet": [
|
||||
"iosMain",
|
||||
"appleMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"skikoMain",
|
||||
"blockingMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jsApiElements",
|
||||
"sourceSet": [
|
||||
"commonMain",
|
||||
"webMain",
|
||||
"skikoMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jsRuntimeElements",
|
||||
"sourceSet": [
|
||||
"commonMain",
|
||||
"webMain",
|
||||
"skikoMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "macosArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"macosMain",
|
||||
"appleMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"skikoMain",
|
||||
"blockingMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "macosX64ApiElements",
|
||||
"sourceSet": [
|
||||
"macosMain",
|
||||
"appleMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"skikoMain",
|
||||
"blockingMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "wasmJsApiElements",
|
||||
"sourceSet": [
|
||||
"commonMain",
|
||||
"webMain",
|
||||
"skikoMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "wasmJsRuntimeElements",
|
||||
"sourceSet": [
|
||||
"commonMain",
|
||||
"webMain",
|
||||
"skikoMain"
|
||||
]
|
||||
}
|
||||
],
|
||||
"sourceSets": [
|
||||
{
|
||||
"name": "appleMain",
|
||||
"dependsOn": [
|
||||
"nativeMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.foundation:foundation",
|
||||
"org.jetbrains.kotlinx:kotlinx-coroutines-core"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "appleMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
},
|
||||
{
|
||||
"name": "blockingMain",
|
||||
"dependsOn": [
|
||||
"commonMain"
|
||||
],
|
||||
"moduleDependency": [],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "commonMain",
|
||||
"dependsOn": [],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "iosMain",
|
||||
"dependsOn": [
|
||||
"appleMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.foundation:foundation",
|
||||
"org.jetbrains.kotlinx:kotlinx-coroutines-core"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "iosMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
},
|
||||
{
|
||||
"name": "jvmAndAndroidMain",
|
||||
"dependsOn": [
|
||||
"blockingMain"
|
||||
],
|
||||
"moduleDependency": [],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "macosMain",
|
||||
"dependsOn": [
|
||||
"appleMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.foundation:foundation",
|
||||
"org.jetbrains.kotlinx:kotlinx-coroutines-core"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "macosMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
},
|
||||
{
|
||||
"name": "nativeMain",
|
||||
"dependsOn": [
|
||||
"commonMain",
|
||||
"skikoMain",
|
||||
"blockingMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.foundation:foundation",
|
||||
"org.jetbrains.kotlinx:kotlinx-coroutines-core"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "nativeMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
},
|
||||
{
|
||||
"name": "skikoMain",
|
||||
"dependsOn": [
|
||||
"commonMain"
|
||||
],
|
||||
"moduleDependency": [],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "webMain",
|
||||
"dependsOn": [
|
||||
"skikoMain"
|
||||
],
|
||||
"moduleDependency": [],
|
||||
"binaryLayout": "klib"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,333 @@
|
||||
{
|
||||
"projectStructure": {
|
||||
"formatVersion": "0.3.3",
|
||||
"isPublishedAsRoot": "true",
|
||||
"variants": [
|
||||
{
|
||||
"name": "jsApiElements",
|
||||
"sourceSet": [
|
||||
"commonMain",
|
||||
"jsWasmMain",
|
||||
"nonJvmMain",
|
||||
"jbMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jsRuntimeElements",
|
||||
"sourceSet": [
|
||||
"commonMain",
|
||||
"jsWasmMain",
|
||||
"nonJvmMain",
|
||||
"jbMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jvmApiElements",
|
||||
"sourceSet": [
|
||||
"jbMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jvmRuntimeElements",
|
||||
"sourceSet": [
|
||||
"jbMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "linuxArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"nonJvmMain",
|
||||
"jbMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "linuxX64ApiElements",
|
||||
"sourceSet": [
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"nonJvmMain",
|
||||
"jbMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "macosArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"macosMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"nonJvmMain",
|
||||
"jbMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "macosX64ApiElements",
|
||||
"sourceSet": [
|
||||
"macosMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"nonJvmMain",
|
||||
"jbMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "mingwX64ApiElements",
|
||||
"sourceSet": [
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"nonJvmMain",
|
||||
"jbMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "tvosArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"tvOsMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"nonJvmMain",
|
||||
"jbMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "tvosSimulatorArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"tvOsMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"nonJvmMain",
|
||||
"jbMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "tvosX64ApiElements",
|
||||
"sourceSet": [
|
||||
"tvOsMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"nonJvmMain",
|
||||
"jbMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "uikitArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"uikitMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"nonJvmMain",
|
||||
"jbMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "uikitSimArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"uikitMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"nonJvmMain",
|
||||
"jbMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "uikitX64ApiElements",
|
||||
"sourceSet": [
|
||||
"uikitMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"nonJvmMain",
|
||||
"jbMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "wasmJsApiElements",
|
||||
"sourceSet": [
|
||||
"commonMain",
|
||||
"jsWasmMain",
|
||||
"nonJvmMain",
|
||||
"jbMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "wasmJsRuntimeElements",
|
||||
"sourceSet": [
|
||||
"commonMain",
|
||||
"jsWasmMain",
|
||||
"nonJvmMain",
|
||||
"jbMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "watchosArm32ApiElements",
|
||||
"sourceSet": [
|
||||
"watchOsMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"nonJvmMain",
|
||||
"jbMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "watchosArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"watchOsMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"nonJvmMain",
|
||||
"jbMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "watchosSimulatorArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"watchOsMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"nonJvmMain",
|
||||
"jbMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "watchosX64ApiElements",
|
||||
"sourceSet": [
|
||||
"watchOsMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"nonJvmMain",
|
||||
"jbMain"
|
||||
]
|
||||
}
|
||||
],
|
||||
"sourceSets": [
|
||||
{
|
||||
"name": "commonMain",
|
||||
"dependsOn": [],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"androidx.collection:collection"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "darwinMain",
|
||||
"dependsOn": [
|
||||
"nativeMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"androidx.collection:collection"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "darwinMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
},
|
||||
{
|
||||
"name": "jbMain",
|
||||
"dependsOn": [
|
||||
"commonMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"androidx.collection:collection"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "jsWasmMain",
|
||||
"dependsOn": [
|
||||
"nonJvmMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"androidx.collection:collection"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "macosMain",
|
||||
"dependsOn": [
|
||||
"darwinMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"androidx.collection:collection"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "macosMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
},
|
||||
{
|
||||
"name": "nativeMain",
|
||||
"dependsOn": [
|
||||
"commonMain",
|
||||
"nonJvmMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"androidx.collection:collection"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "nativeMain-cinterop",
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "nonJvmMain",
|
||||
"dependsOn": [
|
||||
"jbMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"androidx.collection:collection"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "tvOsMain",
|
||||
"dependsOn": [
|
||||
"darwinMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"androidx.collection:collection"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "tvOsMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
},
|
||||
{
|
||||
"name": "uikitMain",
|
||||
"dependsOn": [
|
||||
"darwinMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"androidx.collection:collection"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "uikitMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
},
|
||||
{
|
||||
"name": "watchOsMain",
|
||||
"dependsOn": [
|
||||
"darwinMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"androidx.collection:collection"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "watchOsMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,311 @@
|
||||
{
|
||||
"projectStructure": {
|
||||
"formatVersion": "0.3.3",
|
||||
"isPublishedAsRoot": "true",
|
||||
"variants": [
|
||||
{
|
||||
"name": "debugApiElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "debugRuntimeElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "releaseApiElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "releaseRuntimeElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "desktopApiElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain",
|
||||
"jbMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "desktopRuntimeElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain",
|
||||
"jbMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jsApiElements",
|
||||
"sourceSet": [
|
||||
"commonMain",
|
||||
"jsWasmMain",
|
||||
"jsNativeMain",
|
||||
"jbMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jsRuntimeElements",
|
||||
"sourceSet": [
|
||||
"commonMain",
|
||||
"jsWasmMain",
|
||||
"jsNativeMain",
|
||||
"jbMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "macosArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"macosMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"jsNativeMain",
|
||||
"jbMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "macosX64ApiElements",
|
||||
"sourceSet": [
|
||||
"macosMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"jsNativeMain",
|
||||
"jbMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "uikitArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"uikitMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"jsNativeMain",
|
||||
"jbMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "uikitSimArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"uikitMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"jsNativeMain",
|
||||
"jbMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "uikitX64ApiElements",
|
||||
"sourceSet": [
|
||||
"uikitMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"jsNativeMain",
|
||||
"jbMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "wasmJsApiElements",
|
||||
"sourceSet": [
|
||||
"commonMain",
|
||||
"jsWasmMain",
|
||||
"jsNativeMain",
|
||||
"jbMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "wasmJsRuntimeElements",
|
||||
"sourceSet": [
|
||||
"commonMain",
|
||||
"jsWasmMain",
|
||||
"jsNativeMain",
|
||||
"jbMain"
|
||||
]
|
||||
}
|
||||
],
|
||||
"sourceSets": [
|
||||
{
|
||||
"name": "commonMain",
|
||||
"dependsOn": [],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||
"org.jetbrains.kotlinx:atomicfu",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.collection-internal:collection",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.ui:ui",
|
||||
"org.jetbrains.compose.ui:ui-unit",
|
||||
"org.jetbrains.compose.ui:ui-util",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "darwinMain",
|
||||
"dependsOn": [
|
||||
"nativeMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||
"org.jetbrains.kotlinx:atomicfu",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.collection-internal:collection",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.ui:ui",
|
||||
"org.jetbrains.compose.ui:ui-unit",
|
||||
"org.jetbrains.compose.ui:ui-util"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "darwinMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
},
|
||||
{
|
||||
"name": "jbMain",
|
||||
"dependsOn": [
|
||||
"commonMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||
"org.jetbrains.kotlinx:atomicfu",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.collection-internal:collection",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.ui:ui",
|
||||
"org.jetbrains.compose.ui:ui-unit",
|
||||
"org.jetbrains.compose.ui:ui-util",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "jsNativeMain",
|
||||
"dependsOn": [
|
||||
"commonMain",
|
||||
"jbMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||
"org.jetbrains.kotlinx:atomicfu",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.collection-internal:collection",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.ui:ui",
|
||||
"org.jetbrains.compose.ui:ui-unit",
|
||||
"org.jetbrains.compose.ui:ui-util",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "jsWasmMain",
|
||||
"dependsOn": [
|
||||
"jsNativeMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||
"org.jetbrains.kotlinx:atomicfu",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.collection-internal:collection",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.ui:ui",
|
||||
"org.jetbrains.compose.ui:ui-unit",
|
||||
"org.jetbrains.compose.ui:ui-util",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "jvmMain",
|
||||
"dependsOn": [
|
||||
"commonMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||
"org.jetbrains.kotlinx:atomicfu",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.collection-internal:collection",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.ui:ui",
|
||||
"org.jetbrains.compose.ui:ui-unit",
|
||||
"org.jetbrains.compose.ui:ui-util",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "macosMain",
|
||||
"dependsOn": [
|
||||
"darwinMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||
"org.jetbrains.kotlinx:atomicfu",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.collection-internal:collection",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.ui:ui",
|
||||
"org.jetbrains.compose.ui:ui-unit",
|
||||
"org.jetbrains.compose.ui:ui-util"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "macosMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
},
|
||||
{
|
||||
"name": "nativeMain",
|
||||
"dependsOn": [
|
||||
"commonMain",
|
||||
"jsNativeMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||
"org.jetbrains.kotlinx:atomicfu",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.collection-internal:collection",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.ui:ui",
|
||||
"org.jetbrains.compose.ui:ui-unit",
|
||||
"org.jetbrains.compose.ui:ui-util"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "nativeMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
},
|
||||
{
|
||||
"name": "uikitMain",
|
||||
"dependsOn": [
|
||||
"darwinMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||
"org.jetbrains.kotlinx:atomicfu",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.collection-internal:collection",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.ui:ui",
|
||||
"org.jetbrains.compose.ui:ui-unit",
|
||||
"org.jetbrains.compose.ui:ui-util"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "uikitMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,293 @@
|
||||
{
|
||||
"projectStructure": {
|
||||
"formatVersion": "0.3.3",
|
||||
"isPublishedAsRoot": "true",
|
||||
"variants": [
|
||||
{
|
||||
"name": "debugApiElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "debugRuntimeElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "releaseApiElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "releaseRuntimeElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "desktopApiElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "desktopRuntimeElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "iosArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "iosSimulatorArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "iosX64ApiElements",
|
||||
"sourceSet": [
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jsApiElements",
|
||||
"sourceSet": [
|
||||
"webMain",
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jsRuntimeElements",
|
||||
"sourceSet": [
|
||||
"webMain",
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "linuxArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"linuxMain",
|
||||
"nativeMain",
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "linuxX64ApiElements",
|
||||
"sourceSet": [
|
||||
"linuxMain",
|
||||
"nativeMain",
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "macosArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "macosX64ApiElements",
|
||||
"sourceSet": [
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "tvosArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "tvosSimulatorArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "tvosX64ApiElements",
|
||||
"sourceSet": [
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "wasmJsApiElements",
|
||||
"sourceSet": [
|
||||
"webMain",
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "wasmJsRuntimeElements",
|
||||
"sourceSet": [
|
||||
"webMain",
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "watchosArm32ApiElements",
|
||||
"sourceSet": [
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "watchosArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "watchosSimulatorArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "watchosX64ApiElements",
|
||||
"sourceSet": [
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
}
|
||||
],
|
||||
"sourceSets": [
|
||||
{
|
||||
"name": "commonMain",
|
||||
"dependsOn": [],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"org.jetbrains.kotlinx:kotlinx-coroutines-core"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "darwinMain",
|
||||
"dependsOn": [
|
||||
"nativeMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.kotlinx:kotlinx-coroutines-core"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "darwinMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
},
|
||||
{
|
||||
"name": "jvmMain",
|
||||
"dependsOn": [
|
||||
"commonMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"org.jetbrains.kotlinx:kotlinx-coroutines-core"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "linuxMain",
|
||||
"dependsOn": [
|
||||
"nativeMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.kotlinx:kotlinx-coroutines-core"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "linuxMain-cinterop",
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "nativeMain",
|
||||
"dependsOn": [
|
||||
"nonJvmMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.kotlinx:kotlinx-coroutines-core"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "nativeMain-cinterop",
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "nonJvmMain",
|
||||
"dependsOn": [
|
||||
"commonMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"org.jetbrains.kotlinx:kotlinx-coroutines-core"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "webMain",
|
||||
"dependsOn": [
|
||||
"nonJvmMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"org.jetbrains.kotlinx:kotlinx-coroutines-core"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,286 @@
|
||||
{
|
||||
"projectStructure": {
|
||||
"formatVersion": "0.3.3",
|
||||
"isPublishedAsRoot": "true",
|
||||
"variants": [
|
||||
{
|
||||
"name": "iosArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"darwinMain",
|
||||
"unixMain",
|
||||
"nativeMain",
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "iosSimulatorArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"darwinMain",
|
||||
"unixMain",
|
||||
"nativeMain",
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "iosX64ApiElements",
|
||||
"sourceSet": [
|
||||
"darwinMain",
|
||||
"unixMain",
|
||||
"nativeMain",
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jsApiElements",
|
||||
"sourceSet": [
|
||||
"webMain",
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jsRuntimeElements",
|
||||
"sourceSet": [
|
||||
"webMain",
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jvmApiElements",
|
||||
"sourceSet": [
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jvmRuntimeElements",
|
||||
"sourceSet": [
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "linuxArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"linuxMain",
|
||||
"unixMain",
|
||||
"nativeMain",
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "linuxX64ApiElements",
|
||||
"sourceSet": [
|
||||
"linuxMain",
|
||||
"unixMain",
|
||||
"nativeMain",
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "macosArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"darwinMain",
|
||||
"unixMain",
|
||||
"nativeMain",
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "macosX64ApiElements",
|
||||
"sourceSet": [
|
||||
"darwinMain",
|
||||
"unixMain",
|
||||
"nativeMain",
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "mingwX64ApiElements",
|
||||
"sourceSet": [
|
||||
"nativeMain",
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "tvosArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"darwinMain",
|
||||
"unixMain",
|
||||
"nativeMain",
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "tvosSimulatorArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"darwinMain",
|
||||
"unixMain",
|
||||
"nativeMain",
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "tvosX64ApiElements",
|
||||
"sourceSet": [
|
||||
"darwinMain",
|
||||
"unixMain",
|
||||
"nativeMain",
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "wasmJsApiElements",
|
||||
"sourceSet": [
|
||||
"webMain",
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "wasmJsRuntimeElements",
|
||||
"sourceSet": [
|
||||
"webMain",
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "watchosArm32ApiElements",
|
||||
"sourceSet": [
|
||||
"darwinMain",
|
||||
"unixMain",
|
||||
"nativeMain",
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "watchosArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"darwinMain",
|
||||
"unixMain",
|
||||
"nativeMain",
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "watchosDeviceArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"darwinMain",
|
||||
"unixMain",
|
||||
"nativeMain",
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "watchosSimulatorArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"darwinMain",
|
||||
"unixMain",
|
||||
"nativeMain",
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "watchosX64ApiElements",
|
||||
"sourceSet": [
|
||||
"darwinMain",
|
||||
"unixMain",
|
||||
"nativeMain",
|
||||
"nonJvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
}
|
||||
],
|
||||
"sourceSets": [
|
||||
{
|
||||
"name": "commonMain",
|
||||
"dependsOn": [],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"androidx.annotation:annotation"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "darwinMain",
|
||||
"dependsOn": [
|
||||
"unixMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"androidx.annotation:annotation"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "darwinMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
},
|
||||
{
|
||||
"name": "linuxMain",
|
||||
"dependsOn": [
|
||||
"unixMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"androidx.annotation:annotation"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "linuxMain-cinterop",
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "nativeMain",
|
||||
"dependsOn": [
|
||||
"nonJvmMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"androidx.annotation:annotation"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "nativeMain-cinterop",
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "nonJvmMain",
|
||||
"dependsOn": [
|
||||
"commonMain"
|
||||
],
|
||||
"moduleDependency": [],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "unixMain",
|
||||
"dependsOn": [
|
||||
"nativeMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"androidx.annotation:annotation"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "unixMain-cinterop",
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "webMain",
|
||||
"dependsOn": [
|
||||
"nonJvmMain"
|
||||
],
|
||||
"moduleDependency": [],
|
||||
"binaryLayout": "klib"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,191 @@
|
||||
{
|
||||
"projectStructure": {
|
||||
"formatVersion": "0.3.3",
|
||||
"isPublishedAsRoot": "true",
|
||||
"variants": [
|
||||
{
|
||||
"name": "debugApiElements",
|
||||
"sourceSet": [
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "debugRuntimeElements",
|
||||
"sourceSet": [
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "releaseApiElements",
|
||||
"sourceSet": [
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "releaseRuntimeElements",
|
||||
"sourceSet": [
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "desktopApiElements",
|
||||
"sourceSet": [
|
||||
"commonMain",
|
||||
"nonAndroidMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "desktopRuntimeElements",
|
||||
"sourceSet": [
|
||||
"commonMain",
|
||||
"nonAndroidMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "iosArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"iosMain",
|
||||
"appleMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"nonAndroidMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "iosSimulatorArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"iosMain",
|
||||
"appleMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"nonAndroidMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "iosX64ApiElements",
|
||||
"sourceSet": [
|
||||
"iosMain",
|
||||
"appleMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"nonAndroidMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jsApiElements",
|
||||
"sourceSet": [
|
||||
"commonMain",
|
||||
"nonAndroidMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jsRuntimeElements",
|
||||
"sourceSet": [
|
||||
"commonMain",
|
||||
"nonAndroidMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "macosArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"macosMain",
|
||||
"appleMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"nonAndroidMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "macosX64ApiElements",
|
||||
"sourceSet": [
|
||||
"macosMain",
|
||||
"appleMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"nonAndroidMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "wasmJsApiElements",
|
||||
"sourceSet": [
|
||||
"commonMain",
|
||||
"nonAndroidMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "wasmJsRuntimeElements",
|
||||
"sourceSet": [
|
||||
"commonMain",
|
||||
"nonAndroidMain"
|
||||
]
|
||||
}
|
||||
],
|
||||
"sourceSets": [
|
||||
{
|
||||
"name": "appleMain",
|
||||
"dependsOn": [
|
||||
"nativeMain",
|
||||
"nonAndroidMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "appleMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
},
|
||||
{
|
||||
"name": "commonMain",
|
||||
"dependsOn": [],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "iosMain",
|
||||
"dependsOn": [
|
||||
"appleMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "iosMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
},
|
||||
{
|
||||
"name": "macosMain",
|
||||
"dependsOn": [
|
||||
"appleMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "macosMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
},
|
||||
{
|
||||
"name": "nativeMain",
|
||||
"dependsOn": [
|
||||
"commonMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "nativeMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
},
|
||||
{
|
||||
"name": "nonAndroidMain",
|
||||
"dependsOn": [
|
||||
"commonMain"
|
||||
],
|
||||
"moduleDependency": [],
|
||||
"binaryLayout": "klib"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,49 @@
|
||||
{
|
||||
"projectStructure": {
|
||||
"formatVersion": "0.3.3",
|
||||
"isPublishedAsRoot": "true",
|
||||
"variants": [
|
||||
{
|
||||
"name": "uikitArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"uikitMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "uikitSimArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"uikitMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "uikitX64ApiElements",
|
||||
"sourceSet": [
|
||||
"uikitMain",
|
||||
"commonMain"
|
||||
]
|
||||
}
|
||||
],
|
||||
"sourceSets": [
|
||||
{
|
||||
"name": "commonMain",
|
||||
"dependsOn": [],
|
||||
"moduleDependency": [],
|
||||
"sourceSetCInteropMetadataDirectory": "commonMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
},
|
||||
{
|
||||
"name": "uikitMain",
|
||||
"dependsOn": [
|
||||
"commonMain"
|
||||
],
|
||||
"moduleDependency": [],
|
||||
"sourceSetCInteropMetadataDirectory": "uikitMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,207 @@
|
||||
{
|
||||
"projectStructure": {
|
||||
"formatVersion": "0.3.3",
|
||||
"isPublishedAsRoot": "true",
|
||||
"variants": [
|
||||
{
|
||||
"name": "jsApiElements",
|
||||
"sourceSet": [
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jsRuntimeElements",
|
||||
"sourceSet": [
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jvmApiElements",
|
||||
"sourceSet": [
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jvmRuntimeElements",
|
||||
"sourceSet": [
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "linuxArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "linuxX64ApiElements",
|
||||
"sourceSet": [
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "macosArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"macosMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "macosX64ApiElements",
|
||||
"sourceSet": [
|
||||
"macosMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "mingwX64ApiElements",
|
||||
"sourceSet": [
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "tvosArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "tvosSimulatorArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "tvosX64ApiElements",
|
||||
"sourceSet": [
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "uikitArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"uikitMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "uikitSimArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"uikitMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "uikitX64ApiElements",
|
||||
"sourceSet": [
|
||||
"uikitMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "wasmJsApiElements",
|
||||
"sourceSet": [
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "wasmJsRuntimeElements",
|
||||
"sourceSet": [
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "watchosArm32ApiElements",
|
||||
"sourceSet": [
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "watchosArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "watchosSimulatorArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "watchosX64ApiElements",
|
||||
"sourceSet": [
|
||||
"commonMain"
|
||||
]
|
||||
}
|
||||
],
|
||||
"sourceSets": [
|
||||
{
|
||||
"name": "commonMain",
|
||||
"dependsOn": [],
|
||||
"moduleDependency": [
|
||||
"androidx.annotation:annotation"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "darwinMain",
|
||||
"dependsOn": [
|
||||
"nativeMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"androidx.annotation:annotation"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "darwinMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
},
|
||||
{
|
||||
"name": "macosMain",
|
||||
"dependsOn": [
|
||||
"darwinMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"androidx.annotation:annotation"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "macosMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
},
|
||||
{
|
||||
"name": "nativeMain",
|
||||
"dependsOn": [
|
||||
"commonMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"androidx.annotation:annotation"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "nativeMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
},
|
||||
{
|
||||
"name": "uikitMain",
|
||||
"dependsOn": [
|
||||
"darwinMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"androidx.annotation:annotation"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "uikitMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,256 @@
|
||||
{
|
||||
"projectStructure": {
|
||||
"formatVersion": "0.3.3",
|
||||
"isPublishedAsRoot": "true",
|
||||
"variants": [
|
||||
{
|
||||
"name": "debugApiElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "debugRuntimeElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "releaseApiElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "releaseRuntimeElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "desktopApiElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain",
|
||||
"jbMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "desktopRuntimeElements",
|
||||
"sourceSet": [
|
||||
"jvmMain",
|
||||
"commonMain",
|
||||
"jbMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jsApiElements",
|
||||
"sourceSet": [
|
||||
"commonMain",
|
||||
"jsNativeMain",
|
||||
"jbMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jsRuntimeElements",
|
||||
"sourceSet": [
|
||||
"commonMain",
|
||||
"jsNativeMain",
|
||||
"jbMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "macosArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"macosMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"jsNativeMain",
|
||||
"jbMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "macosX64ApiElements",
|
||||
"sourceSet": [
|
||||
"macosMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"jsNativeMain",
|
||||
"jbMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "uikitArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"uikitMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"jsNativeMain",
|
||||
"jbMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "uikitSimArm64ApiElements",
|
||||
"sourceSet": [
|
||||
"uikitMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"jsNativeMain",
|
||||
"jbMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "uikitX64ApiElements",
|
||||
"sourceSet": [
|
||||
"uikitMain",
|
||||
"darwinMain",
|
||||
"nativeMain",
|
||||
"commonMain",
|
||||
"jsNativeMain",
|
||||
"jbMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "wasmJsApiElements",
|
||||
"sourceSet": [
|
||||
"commonMain",
|
||||
"jsNativeMain",
|
||||
"jbMain"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "wasmJsRuntimeElements",
|
||||
"sourceSet": [
|
||||
"commonMain",
|
||||
"jsNativeMain",
|
||||
"jbMain"
|
||||
]
|
||||
}
|
||||
],
|
||||
"sourceSets": [
|
||||
{
|
||||
"name": "commonMain",
|
||||
"dependsOn": [],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.ui:ui-geometry",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.ui:ui-util"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "darwinMain",
|
||||
"dependsOn": [
|
||||
"nativeMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.ui:ui-geometry",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.ui:ui-util"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "darwinMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
},
|
||||
{
|
||||
"name": "jbMain",
|
||||
"dependsOn": [
|
||||
"commonMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.ui:ui-geometry",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.ui:ui-util"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "jsNativeMain",
|
||||
"dependsOn": [
|
||||
"jbMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.ui:ui-geometry",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.ui:ui-util"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "jvmMain",
|
||||
"dependsOn": [
|
||||
"commonMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.ui:ui-geometry",
|
||||
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.ui:ui-util"
|
||||
],
|
||||
"binaryLayout": "klib"
|
||||
},
|
||||
{
|
||||
"name": "macosMain",
|
||||
"dependsOn": [
|
||||
"darwinMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.ui:ui-geometry",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.ui:ui-util"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "macosMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
},
|
||||
{
|
||||
"name": "nativeMain",
|
||||
"dependsOn": [
|
||||
"commonMain",
|
||||
"jsNativeMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.ui:ui-geometry",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.ui:ui-util"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "nativeMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
},
|
||||
{
|
||||
"name": "uikitMain",
|
||||
"dependsOn": [
|
||||
"darwinMain"
|
||||
],
|
||||
"moduleDependency": [
|
||||
"org.jetbrains.compose.ui:ui-geometry",
|
||||
"org.jetbrains.compose.annotation-internal:annotation",
|
||||
"org.jetbrains.compose.runtime:runtime",
|
||||
"org.jetbrains.compose.ui:ui-util"
|
||||
],
|
||||
"sourceSetCInteropMetadataDirectory": "uikitMain-cinterop",
|
||||
"binaryLayout": "klib",
|
||||
"hostSpecific": "true"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,44 @@
|
||||
<vector
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:aapt="http://schemas.android.com/aapt"
|
||||
android:width="450dp"
|
||||
android:height="450dp"
|
||||
android:viewportWidth="64"
|
||||
android:viewportHeight="64">
|
||||
<path
|
||||
android:pathData="M56.25,18V46L32,60 7.75,46V18L32,4Z"
|
||||
android:fillColor="#6075f2"/>
|
||||
<path
|
||||
android:pathData="m41.5,26.5v11L32,43V60L56.25,46V18Z"
|
||||
android:fillColor="#6b57ff"/>
|
||||
<path
|
||||
android:pathData="m32,43 l-9.5,-5.5v-11L7.75,18V46L32,60Z">
|
||||
<aapt:attr name="android:fillColor">
|
||||
<gradient
|
||||
android:centerX="23.131"
|
||||
android:centerY="18.441"
|
||||
android:gradientRadius="42.132"
|
||||
android:type="radial">
|
||||
<item android:offset="0" android:color="#FF5383EC"/>
|
||||
<item android:offset="0.867" android:color="#FF7F52FF"/>
|
||||
</gradient>
|
||||
</aapt:attr>
|
||||
</path>
|
||||
<path
|
||||
android:pathData="M22.5,26.5 L32,21 41.5,26.5 56.25,18 32,4 7.75,18Z">
|
||||
<aapt:attr name="android:fillColor">
|
||||
<gradient
|
||||
android:startX="44.172"
|
||||
android:startY="4.377"
|
||||
android:endX="17.973"
|
||||
android:endY="34.035"
|
||||
android:type="linear">
|
||||
<item android:offset="0" android:color="#FF33C3FF"/>
|
||||
<item android:offset="0.878" android:color="#FF5383EC"/>
|
||||
</gradient>
|
||||
</aapt:attr>
|
||||
</path>
|
||||
<path
|
||||
android:pathData="m32,21 l9.526,5.5v11L32,43 22.474,37.5v-11z"
|
||||
android:fillColor="#000000"/>
|
||||
</vector>
|
||||
@ -0,0 +1,44 @@
|
||||
package su.sonoma.sclient
|
||||
|
||||
import androidx.compose.animation.AnimatedVisibility
|
||||
import androidx.compose.foundation.Image
|
||||
import androidx.compose.foundation.layout.Column
|
||||
import androidx.compose.foundation.layout.fillMaxSize
|
||||
import androidx.compose.foundation.layout.fillMaxWidth
|
||||
import androidx.compose.foundation.layout.safeContentPadding
|
||||
import androidx.compose.material3.Button
|
||||
import androidx.compose.material3.MaterialTheme
|
||||
import androidx.compose.material3.Text
|
||||
import androidx.compose.runtime.*
|
||||
import androidx.compose.ui.Alignment
|
||||
import androidx.compose.ui.Modifier
|
||||
import org.jetbrains.compose.resources.painterResource
|
||||
import org.jetbrains.compose.ui.tooling.preview.Preview
|
||||
|
||||
import sclient.composeapp.generated.resources.Res
|
||||
import sclient.composeapp.generated.resources.compose_multiplatform
|
||||
|
||||
@Composable
|
||||
@Preview
|
||||
fun App() {
|
||||
MaterialTheme {
|
||||
var showContent by remember { mutableStateOf(false) }
|
||||
Column(
|
||||
modifier = Modifier
|
||||
.safeContentPadding()
|
||||
.fillMaxSize(),
|
||||
horizontalAlignment = Alignment.CenterHorizontally,
|
||||
) {
|
||||
Button(onClick = { showContent = !showContent }) {
|
||||
Text("Click me!")
|
||||
}
|
||||
AnimatedVisibility(showContent) {
|
||||
val greeting = remember { Greeting().greet() }
|
||||
Column(Modifier.fillMaxWidth(), horizontalAlignment = Alignment.CenterHorizontally) {
|
||||
Image(painterResource(Res.drawable.compose_multiplatform), null)
|
||||
Text("Compose: $greeting")
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,9 @@
|
||||
package su.sonoma.sclient
|
||||
|
||||
class Greeting {
|
||||
private val platform = getPlatform()
|
||||
|
||||
fun greet(): String {
|
||||
return "Hello, ${platform.name}!"
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,7 @@
|
||||
package su.sonoma.sclient
|
||||
|
||||
interface Platform {
|
||||
val name: String
|
||||
}
|
||||
|
||||
expect fun getPlatform(): Platform
|
||||
@ -0,0 +1,7 @@
|
||||
package su.sonoma.sclient
|
||||
|
||||
class JVMPlatform: Platform {
|
||||
override val name: String = "Java ${System.getProperty("java.version")}"
|
||||
}
|
||||
|
||||
actual fun getPlatform(): Platform = JVMPlatform()
|
||||
@ -0,0 +1,13 @@
|
||||
package su.sonoma.sclient
|
||||
|
||||
import androidx.compose.ui.window.Window
|
||||
import androidx.compose.ui.window.application
|
||||
|
||||
fun main() = application {
|
||||
Window(
|
||||
onCloseRequest = ::exitApplication,
|
||||
title = "sclient",
|
||||
) {
|
||||
App()
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,7 @@
|
||||
package su.sonoma.sclient
|
||||
|
||||
class WasmPlatform: Platform {
|
||||
override val name: String = "Web with Kotlin/Wasm"
|
||||
}
|
||||
|
||||
actual fun getPlatform(): Platform = WasmPlatform()
|
||||
@ -0,0 +1,12 @@
|
||||
package su.sonoma.sclient
|
||||
|
||||
import androidx.compose.ui.ExperimentalComposeUiApi
|
||||
import androidx.compose.ui.window.ComposeViewport
|
||||
import kotlinx.browser.document
|
||||
|
||||
@OptIn(ExperimentalComposeUiApi::class)
|
||||
fun main() {
|
||||
ComposeViewport(document.body!!) {
|
||||
App()
|
||||
}
|
||||
}
|
||||
12
client/composeApp/src/wasmJsMain/resources/index.html
Normal file
12
client/composeApp/src/wasmJsMain/resources/index.html
Normal file
@ -0,0 +1,12 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>sclient</title>
|
||||
<link type="text/css" rel="stylesheet" href="styles.css">
|
||||
<script type="application/javascript" src="composeApp.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
</body>
|
||||
</html>
|
||||
7
client/composeApp/src/wasmJsMain/resources/styles.css
Normal file
7
client/composeApp/src/wasmJsMain/resources/styles.css
Normal file
@ -0,0 +1,7 @@
|
||||
html, body {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
overflow: hidden;
|
||||
}
|
||||
Reference in New Issue
Block a user