Initial commit

This commit is contained in:
2025-09-17 11:31:16 -03:00
commit 38c87e0d1c
100 changed files with 13378 additions and 0 deletions

View File

@@ -0,0 +1,79 @@
import org.jetbrains.compose.desktop.application.dsl.TargetFormat
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
plugins {
alias(libs.plugins.kotlinMultiplatform)
alias(libs.plugins.androidApplication)
alias(libs.plugins.composeMultiplatform)
alias(libs.plugins.composeCompiler)
}
kotlin {
androidTarget {
compilerOptions {
jvmTarget.set(JvmTarget.JVM_11)
}
}
listOf(
iosArm64(),
iosSimulatorArm64()
).forEach { iosTarget ->
iosTarget.binaries.framework {
baseName = "ComposeApp"
isStatic = true
}
}
sourceSets {
androidMain.dependencies {
implementation(compose.preview)
implementation(libs.androidx.activity.compose)
}
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.viewmodelCompose)
implementation(libs.androidx.lifecycle.runtimeCompose)
}
commonTest.dependencies {
implementation(libs.kotlin.test)
}
}
}
android {
namespace = "dev.carlosmartino.triplogic"
compileSdk = libs.versions.android.compileSdk.get().toInt()
defaultConfig {
applicationId = "dev.carlosmartino.triplogic"
minSdk = libs.versions.android.minSdk.get().toInt()
targetSdk = libs.versions.android.targetSdk.get().toInt()
versionCode = 1
versionName = "1.0"
}
packaging {
resources {
excludes += "/META-INF/{AL2.0,LGPL2.1}"
}
}
buildTypes {
getByName("release") {
isMinifyEnabled = false
}
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}
}
dependencies {
debugImplementation(compose.uiTooling)
}

View File

@@ -0,0 +1,38 @@
@file:OptIn(org.jetbrains.compose.resources.InternalResourceApi::class)
package triplogic.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
}

View File

@@ -0,0 +1,23 @@
@file:OptIn(InternalResourceApi::class)
package triplogic.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/triplogic.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)
}

View File

@@ -0,0 +1,19 @@
package triplogic.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>

View File

@@ -0,0 +1,47 @@
@file:OptIn(InternalResourceApi::class)
@file:Suppress(
"RedundantVisibilityModifier",
"REDUNDANT_VISIBILITY_MODIFIER",
)
package triplogic.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/triplogic.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/triplogic.composeapp.generated.resources/" + path)
public object drawable
public object string
public object array
public object plurals
public object font
}

View File

@@ -0,0 +1,38 @@
@file:OptIn(org.jetbrains.compose.resources.InternalResourceApi::class)
package triplogic.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
}

View File

@@ -0,0 +1,38 @@
@file:OptIn(org.jetbrains.compose.resources.InternalResourceApi::class)
package triplogic.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
}

View File

@@ -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>

View File

@@ -0,0 +1 @@
/Users/imcarlost/.konan/kotlin-native-prebuilt-macos-aarch64-2.2.10/klib/commonized/2.2.10

View File

@@ -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"
}
]
}
}

View File

@@ -0,0 +1,221 @@
{
"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": [
"linuxMain",
"nativeMain",
"commonMain"
]
},
{
"name": "linuxX64ApiElements",
"sourceSet": [
"linuxMain",
"nativeMain",
"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": "linuxMain",
"dependsOn": [
"nativeMain"
],
"moduleDependency": [
"androidx.annotation:annotation"
],
"sourceSetCInteropMetadataDirectory": "linuxMain-cinterop",
"binaryLayout": "klib"
},
{
"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"
},
{
"name": "uikitMain",
"dependsOn": [
"darwinMain"
],
"moduleDependency": [
"androidx.annotation:annotation"
],
"sourceSetCInteropMetadataDirectory": "uikitMain-cinterop",
"binaryLayout": "klib",
"hostSpecific": "true"
}
]
}
}

View File

@@ -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"
}
]
}
}

View File

@@ -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"
}
]
}
}

View File

@@ -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"
}
]
}
}

View File

@@ -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"
}
]
}
}

View File

@@ -0,0 +1,418 @@
{
"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",
"jsAndWasmSharedMain"
]
},
{
"name": "jsRuntimeElements",
"sourceSet": [
"commonMain",
"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",
"jsAndWasmSharedMain"
]
},
{
"name": "wasmJsRuntimeElements",
"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": "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"
}
]
}
}

View File

@@ -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"
}
]
}
}

View File

@@ -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"
}
]
}
}

View File

@@ -0,0 +1,301 @@
{
"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",
"nonJvmMain",
"nonAndroidMain"
]
},
{
"name": "jsRuntimeElements",
"sourceSet": [
"commonMain",
"webMain",
"nonJvmMain",
"nonAndroidMain"
]
},
{
"name": "macosArm64ApiElements",
"sourceSet": [
"macosMain",
"darwinMain",
"nativeMain",
"commonMain",
"nonJvmMain",
"nonAndroidMain"
]
},
{
"name": "macosX64ApiElements",
"sourceSet": [
"macosMain",
"darwinMain",
"nativeMain",
"commonMain",
"nonJvmMain",
"nonAndroidMain"
]
},
{
"name": "uikitArm64ApiElements",
"sourceSet": [
"uikitMain",
"darwinMain",
"nativeMain",
"commonMain",
"nonJvmMain",
"nonAndroidMain"
]
},
{
"name": "uikitSimArm64ApiElements",
"sourceSet": [
"uikitMain",
"darwinMain",
"nativeMain",
"commonMain",
"nonJvmMain",
"nonAndroidMain"
]
},
{
"name": "uikitX64ApiElements",
"sourceSet": [
"uikitMain",
"darwinMain",
"nativeMain",
"commonMain",
"nonJvmMain",
"nonAndroidMain"
]
},
{
"name": "wasmJsApiElements",
"sourceSet": [
"commonMain",
"webMain",
"nonJvmMain",
"nonAndroidMain"
]
},
{
"name": "wasmJsRuntimeElements",
"sourceSet": [
"commonMain",
"webMain",
"nonJvmMain",
"nonAndroidMain"
]
}
],
"sourceSets": [
{
"name": "commonMain",
"dependsOn": [],
"moduleDependency": [
"org.jetbrains.androidx.lifecycle:lifecycle-common",
"org.jetbrains.androidx.lifecycle:lifecycle-viewmodel",
"androidx.annotation:annotation",
"org.jetbrains.compose.runtime:runtime",
"org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-savedstate",
"org.jetbrains.compose.ui:ui",
"org.jetbrains.kotlinx:kotlinx-serialization-core",
"org.jetbrains.kotlin:kotlin-stdlib"
],
"binaryLayout": "klib"
},
{
"name": "darwinMain",
"dependsOn": [
"nativeMain"
],
"moduleDependency": [
"org.jetbrains.androidx.lifecycle:lifecycle-common",
"org.jetbrains.androidx.lifecycle:lifecycle-viewmodel",
"androidx.annotation:annotation",
"org.jetbrains.compose.runtime:runtime",
"org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-savedstate",
"org.jetbrains.compose.ui:ui",
"org.jetbrains.kotlinx:kotlinx-serialization-core"
],
"sourceSetCInteropMetadataDirectory": "darwinMain-cinterop",
"binaryLayout": "klib",
"hostSpecific": "true"
},
{
"name": "jvmMain",
"dependsOn": [
"commonMain"
],
"moduleDependency": [
"org.jetbrains.androidx.lifecycle:lifecycle-common",
"org.jetbrains.androidx.lifecycle:lifecycle-viewmodel",
"androidx.annotation:annotation",
"org.jetbrains.compose.runtime:runtime",
"org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-savedstate",
"org.jetbrains.compose.ui:ui",
"org.jetbrains.kotlinx:kotlinx-serialization-core",
"org.jetbrains.kotlin:kotlin-stdlib"
],
"binaryLayout": "klib"
},
{
"name": "macosMain",
"dependsOn": [
"darwinMain"
],
"moduleDependency": [
"org.jetbrains.androidx.lifecycle:lifecycle-common",
"org.jetbrains.androidx.lifecycle:lifecycle-viewmodel",
"androidx.annotation:annotation",
"org.jetbrains.compose.runtime:runtime",
"org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-savedstate",
"org.jetbrains.compose.ui:ui",
"org.jetbrains.kotlinx:kotlinx-serialization-core"
],
"sourceSetCInteropMetadataDirectory": "macosMain-cinterop",
"binaryLayout": "klib",
"hostSpecific": "true"
},
{
"name": "nativeMain",
"dependsOn": [
"commonMain",
"nonJvmMain"
],
"moduleDependency": [
"org.jetbrains.androidx.lifecycle:lifecycle-common",
"org.jetbrains.androidx.lifecycle:lifecycle-viewmodel",
"androidx.annotation:annotation",
"org.jetbrains.compose.runtime:runtime",
"org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-savedstate",
"org.jetbrains.compose.ui:ui",
"org.jetbrains.kotlinx:kotlinx-serialization-core"
],
"sourceSetCInteropMetadataDirectory": "nativeMain-cinterop",
"binaryLayout": "klib",
"hostSpecific": "true"
},
{
"name": "nonAndroidMain",
"dependsOn": [
"commonMain"
],
"moduleDependency": [
"org.jetbrains.androidx.lifecycle:lifecycle-common",
"org.jetbrains.androidx.lifecycle:lifecycle-viewmodel",
"androidx.annotation:annotation",
"org.jetbrains.compose.runtime:runtime",
"org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-savedstate",
"org.jetbrains.compose.ui:ui",
"org.jetbrains.kotlinx:kotlinx-serialization-core",
"org.jetbrains.kotlin:kotlin-stdlib"
],
"binaryLayout": "klib"
},
{
"name": "nonJvmMain",
"dependsOn": [
"nonAndroidMain"
],
"moduleDependency": [
"org.jetbrains.androidx.lifecycle:lifecycle-common",
"org.jetbrains.androidx.lifecycle:lifecycle-viewmodel",
"androidx.annotation:annotation",
"org.jetbrains.compose.runtime:runtime",
"org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-savedstate",
"org.jetbrains.compose.ui:ui",
"org.jetbrains.kotlinx:kotlinx-serialization-core",
"org.jetbrains.kotlin:kotlin-stdlib"
],
"binaryLayout": "klib"
},
{
"name": "uikitMain",
"dependsOn": [
"darwinMain"
],
"moduleDependency": [
"org.jetbrains.androidx.lifecycle:lifecycle-common",
"org.jetbrains.androidx.lifecycle:lifecycle-viewmodel",
"androidx.annotation:annotation",
"org.jetbrains.compose.runtime:runtime",
"org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-savedstate",
"org.jetbrains.compose.ui:ui",
"org.jetbrains.kotlinx:kotlinx-serialization-core"
],
"sourceSetCInteropMetadataDirectory": "uikitMain-cinterop",
"binaryLayout": "klib",
"hostSpecific": "true"
},
{
"name": "webMain",
"dependsOn": [
"nonJvmMain"
],
"moduleDependency": [
"org.jetbrains.androidx.lifecycle:lifecycle-common",
"org.jetbrains.androidx.lifecycle:lifecycle-viewmodel",
"androidx.annotation:annotation",
"org.jetbrains.compose.runtime:runtime",
"org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-savedstate",
"org.jetbrains.compose.ui:ui",
"org.jetbrains.kotlinx:kotlinx-serialization-core",
"org.jetbrains.kotlin:kotlin-stdlib"
],
"binaryLayout": "klib"
}
]
}
}

View File

@@ -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"
}
]
}
}

View File

@@ -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"
}
]
}
}

View File

@@ -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"
}
]
}
}

View File

@@ -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"
}
]
}
}

View File

@@ -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"
}
]
}
}

View File

@@ -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"
}
]
}
}

View File

@@ -0,0 +1,168 @@
{
"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"
]
},
{
"name": "desktopRuntimeElements",
"sourceSet": [
"commonMain"
]
},
{
"name": "iosArm64ApiElements",
"sourceSet": [
"commonMain"
]
},
{
"name": "iosSimulatorArm64ApiElements",
"sourceSet": [
"commonMain"
]
},
{
"name": "iosX64ApiElements",
"sourceSet": [
"commonMain"
]
},
{
"name": "jsApiElements",
"sourceSet": [
"commonMain"
]
},
{
"name": "jsRuntimeElements",
"sourceSet": [
"commonMain"
]
},
{
"name": "linuxArm64ApiElements",
"sourceSet": [
"commonMain"
]
},
{
"name": "linuxX64ApiElements",
"sourceSet": [
"commonMain"
]
},
{
"name": "macosArm64ApiElements",
"sourceSet": [
"commonMain"
]
},
{
"name": "macosX64ApiElements",
"sourceSet": [
"commonMain"
]
},
{
"name": "mingwX64ApiElements",
"sourceSet": [
"commonMain"
]
},
{
"name": "tvosArm64ApiElements",
"sourceSet": [
"commonMain"
]
},
{
"name": "tvosSimulatorArm64ApiElements",
"sourceSet": [
"commonMain"
]
},
{
"name": "tvosX64ApiElements",
"sourceSet": [
"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.lifecycle:lifecycle-runtime"
],
"binaryLayout": "klib"
}
]
}
}

View File

@@ -0,0 +1,185 @@
{
"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": "watchosDeviceArm64ApiElements",
"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",
"androidx.annotation:annotation"
],
"binaryLayout": "klib"
},
{
"name": "nonJvmMain",
"dependsOn": [
"commonMain"
],
"moduleDependency": [
"org.jetbrains.kotlin:kotlin-stdlib",
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
"androidx.annotation:annotation",
"org.jetbrains.kotlinx:atomicfu"
],
"binaryLayout": "klib"
}
]
}
}

View File

@@ -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"
}
]
}
}

View File

@@ -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"
}
]
}
}

View File

@@ -0,0 +1,339 @@
{
"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"
],
"sourceSetCInteropMetadataDirectory": "androidNativeMain-cinterop",
"binaryLayout": "klib"
},
{
"name": "appleMain",
"dependsOn": [
"nativeMain"
],
"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": "linuxMain",
"dependsOn": [
"nativeMain"
],
"moduleDependency": [
"org.jetbrains.kotlin:kotlin-stdlib"
],
"sourceSetCInteropMetadataDirectory": "linuxMain-cinterop",
"binaryLayout": "klib"
},
{
"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"
},
{
"name": "tvosMain",
"dependsOn": [
"appleMain"
],
"moduleDependency": [
"org.jetbrains.kotlin:kotlin-stdlib"
],
"sourceSetCInteropMetadataDirectory": "tvosMain-cinterop",
"binaryLayout": "klib",
"hostSpecific": "true"
},
{
"name": "watchosMain",
"dependsOn": [
"appleMain"
],
"moduleDependency": [
"org.jetbrains.kotlin:kotlin-stdlib"
],
"sourceSetCInteropMetadataDirectory": "watchosMain-cinterop",
"binaryLayout": "klib",
"hostSpecific": "true"
}
]
}
}

View File

@@ -0,0 +1,168 @@
{
"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"
]
},
{
"name": "desktopRuntimeElements",
"sourceSet": [
"commonMain"
]
},
{
"name": "iosArm64ApiElements",
"sourceSet": [
"commonMain"
]
},
{
"name": "iosSimulatorArm64ApiElements",
"sourceSet": [
"commonMain"
]
},
{
"name": "iosX64ApiElements",
"sourceSet": [
"commonMain"
]
},
{
"name": "jsApiElements",
"sourceSet": [
"commonMain"
]
},
{
"name": "jsRuntimeElements",
"sourceSet": [
"commonMain"
]
},
{
"name": "linuxArm64ApiElements",
"sourceSet": [
"commonMain"
]
},
{
"name": "linuxX64ApiElements",
"sourceSet": [
"commonMain"
]
},
{
"name": "macosArm64ApiElements",
"sourceSet": [
"commonMain"
]
},
{
"name": "macosX64ApiElements",
"sourceSet": [
"commonMain"
]
},
{
"name": "mingwX64ApiElements",
"sourceSet": [
"commonMain"
]
},
{
"name": "tvosArm64ApiElements",
"sourceSet": [
"commonMain"
]
},
{
"name": "tvosSimulatorArm64ApiElements",
"sourceSet": [
"commonMain"
]
},
{
"name": "tvosX64ApiElements",
"sourceSet": [
"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.lifecycle:lifecycle-viewmodel"
],
"binaryLayout": "klib"
}
]
}
}

View File

@@ -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"
}
]
}
}

View File

@@ -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"
}
]
}
}

View File

@@ -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"
}
]
}
}

View File

@@ -0,0 +1,342 @@
{
"projectStructure": {
"formatVersion": "0.3.3",
"isPublishedAsRoot": "true",
"variants": [
{
"name": "releaseApiElements",
"sourceSet": [
"jvmMain",
"commonMain"
]
},
{
"name": "releaseRuntimeElements",
"sourceSet": [
"jvmMain",
"commonMain"
]
},
{
"name": "desktopApiElements",
"sourceSet": [
"jvmMain",
"commonMain",
"nonAndroidMain"
]
},
{
"name": "desktopRuntimeElements",
"sourceSet": [
"jvmMain",
"commonMain",
"nonAndroidMain"
]
},
{
"name": "iosArm64ApiElements",
"sourceSet": [
"darwinMain",
"unixMain",
"nativeMain",
"commonMain",
"nonAndroidMain"
]
},
{
"name": "iosSimulatorArm64ApiElements",
"sourceSet": [
"darwinMain",
"unixMain",
"nativeMain",
"commonMain",
"nonAndroidMain"
]
},
{
"name": "iosX64ApiElements",
"sourceSet": [
"darwinMain",
"unixMain",
"nativeMain",
"commonMain",
"nonAndroidMain"
]
},
{
"name": "jsApiElements",
"sourceSet": [
"webMain",
"nonAndroidMain",
"commonMain"
]
},
{
"name": "jsRuntimeElements",
"sourceSet": [
"webMain",
"nonAndroidMain",
"commonMain"
]
},
{
"name": "linuxArm64ApiElements",
"sourceSet": [
"linuxMain",
"unixMain",
"nativeMain",
"commonMain",
"nonAndroidMain"
]
},
{
"name": "linuxX64ApiElements",
"sourceSet": [
"linuxMain",
"unixMain",
"nativeMain",
"commonMain",
"nonAndroidMain"
]
},
{
"name": "macosArm64ApiElements",
"sourceSet": [
"darwinMain",
"unixMain",
"nativeMain",
"commonMain",
"nonAndroidMain"
]
},
{
"name": "macosX64ApiElements",
"sourceSet": [
"darwinMain",
"unixMain",
"nativeMain",
"commonMain",
"nonAndroidMain"
]
},
{
"name": "mingwX64ApiElements",
"sourceSet": [
"nativeMain",
"commonMain",
"nonAndroidMain"
]
},
{
"name": "tvosArm64ApiElements",
"sourceSet": [
"darwinMain",
"unixMain",
"nativeMain",
"commonMain",
"nonAndroidMain"
]
},
{
"name": "tvosSimulatorArm64ApiElements",
"sourceSet": [
"darwinMain",
"unixMain",
"nativeMain",
"commonMain",
"nonAndroidMain"
]
},
{
"name": "tvosX64ApiElements",
"sourceSet": [
"darwinMain",
"unixMain",
"nativeMain",
"commonMain",
"nonAndroidMain"
]
},
{
"name": "wasmJsApiElements",
"sourceSet": [
"webMain",
"nonAndroidMain",
"commonMain"
]
},
{
"name": "wasmJsRuntimeElements",
"sourceSet": [
"webMain",
"nonAndroidMain",
"commonMain"
]
},
{
"name": "watchosArm32ApiElements",
"sourceSet": [
"darwinMain",
"unixMain",
"nativeMain",
"commonMain",
"nonAndroidMain"
]
},
{
"name": "watchosArm64ApiElements",
"sourceSet": [
"darwinMain",
"unixMain",
"nativeMain",
"commonMain",
"nonAndroidMain"
]
},
{
"name": "watchosDeviceArm64ApiElements",
"sourceSet": [
"darwinMain",
"unixMain",
"nativeMain",
"commonMain",
"nonAndroidMain"
]
},
{
"name": "watchosSimulatorArm64ApiElements",
"sourceSet": [
"darwinMain",
"unixMain",
"nativeMain",
"commonMain",
"nonAndroidMain"
]
},
{
"name": "watchosX64ApiElements",
"sourceSet": [
"darwinMain",
"unixMain",
"nativeMain",
"commonMain",
"nonAndroidMain"
]
}
],
"sourceSets": [
{
"name": "commonMain",
"dependsOn": [],
"moduleDependency": [
"org.jetbrains.kotlin:kotlin-stdlib",
"androidx.annotation:annotation",
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
"org.jetbrains.kotlinx:kotlinx-serialization-core",
"androidx.lifecycle:lifecycle-common"
],
"binaryLayout": "klib"
},
{
"name": "darwinMain",
"dependsOn": [
"unixMain"
],
"moduleDependency": [
"androidx.annotation:annotation",
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
"org.jetbrains.kotlinx:kotlinx-serialization-core",
"androidx.lifecycle:lifecycle-common"
],
"sourceSetCInteropMetadataDirectory": "darwinMain-cinterop",
"binaryLayout": "klib",
"hostSpecific": "true"
},
{
"name": "jvmMain",
"dependsOn": [
"commonMain"
],
"moduleDependency": [
"org.jetbrains.kotlin:kotlin-stdlib",
"androidx.annotation:annotation",
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
"org.jetbrains.kotlinx:kotlinx-serialization-core",
"androidx.lifecycle:lifecycle-common"
],
"binaryLayout": "klib"
},
{
"name": "linuxMain",
"dependsOn": [
"unixMain"
],
"moduleDependency": [
"androidx.annotation:annotation",
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
"org.jetbrains.kotlinx:kotlinx-serialization-core",
"androidx.lifecycle:lifecycle-common"
],
"sourceSetCInteropMetadataDirectory": "linuxMain-cinterop",
"binaryLayout": "klib"
},
{
"name": "nativeMain",
"dependsOn": [
"commonMain",
"nonAndroidMain"
],
"moduleDependency": [
"androidx.annotation:annotation",
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
"org.jetbrains.kotlinx:kotlinx-serialization-core",
"androidx.lifecycle:lifecycle-common"
],
"sourceSetCInteropMetadataDirectory": "nativeMain-cinterop",
"binaryLayout": "klib"
},
{
"name": "nonAndroidMain",
"dependsOn": [
"commonMain"
],
"moduleDependency": [
"org.jetbrains.kotlin:kotlin-stdlib",
"androidx.annotation:annotation",
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
"org.jetbrains.kotlinx:kotlinx-serialization-core",
"androidx.lifecycle:lifecycle-common"
],
"binaryLayout": "klib"
},
{
"name": "unixMain",
"dependsOn": [
"nativeMain"
],
"moduleDependency": [
"androidx.annotation:annotation",
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
"org.jetbrains.kotlinx:kotlinx-serialization-core",
"androidx.lifecycle:lifecycle-common"
],
"sourceSetCInteropMetadataDirectory": "unixMain-cinterop",
"binaryLayout": "klib"
},
{
"name": "webMain",
"dependsOn": [
"nonAndroidMain"
],
"moduleDependency": [
"org.jetbrains.kotlin:kotlin-stdlib",
"androidx.annotation:annotation",
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
"org.jetbrains.kotlinx:kotlinx-serialization-core",
"androidx.lifecycle:lifecycle-common"
],
"binaryLayout": "klib"
}
]
}
}

View File

@@ -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"
}
]
}
}

View File

@@ -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"
}
]
}
}

View File

@@ -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"
}
]
}
}

View File

@@ -0,0 +1,144 @@
{
"projectStructure": {
"formatVersion": "0.3.3",
"isPublishedAsRoot": "true",
"variants": [
{
"name": "iosArm64ApiElements",
"sourceSet": [
"commonMain"
]
},
{
"name": "iosSimulatorArm64ApiElements",
"sourceSet": [
"commonMain"
]
},
{
"name": "iosX64ApiElements",
"sourceSet": [
"commonMain"
]
},
{
"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": [
"commonMain"
]
},
{
"name": "macosX64ApiElements",
"sourceSet": [
"commonMain"
]
},
{
"name": "mingwX64ApiElements",
"sourceSet": [
"commonMain"
]
},
{
"name": "tvosArm64ApiElements",
"sourceSet": [
"commonMain"
]
},
{
"name": "tvosSimulatorArm64ApiElements",
"sourceSet": [
"commonMain"
]
},
{
"name": "tvosX64ApiElements",
"sourceSet": [
"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.lifecycle:lifecycle-common"
],
"binaryLayout": "klib"
}
]
}
}

View File

@@ -0,0 +1,168 @@
{
"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"
]
},
{
"name": "desktopRuntimeElements",
"sourceSet": [
"commonMain"
]
},
{
"name": "iosArm64ApiElements",
"sourceSet": [
"commonMain"
]
},
{
"name": "iosSimulatorArm64ApiElements",
"sourceSet": [
"commonMain"
]
},
{
"name": "iosX64ApiElements",
"sourceSet": [
"commonMain"
]
},
{
"name": "jsApiElements",
"sourceSet": [
"commonMain"
]
},
{
"name": "jsRuntimeElements",
"sourceSet": [
"commonMain"
]
},
{
"name": "linuxArm64ApiElements",
"sourceSet": [
"commonMain"
]
},
{
"name": "linuxX64ApiElements",
"sourceSet": [
"commonMain"
]
},
{
"name": "macosArm64ApiElements",
"sourceSet": [
"commonMain"
]
},
{
"name": "macosX64ApiElements",
"sourceSet": [
"commonMain"
]
},
{
"name": "mingwX64ApiElements",
"sourceSet": [
"commonMain"
]
},
{
"name": "tvosArm64ApiElements",
"sourceSet": [
"commonMain"
]
},
{
"name": "tvosSimulatorArm64ApiElements",
"sourceSet": [
"commonMain"
]
},
{
"name": "tvosX64ApiElements",
"sourceSet": [
"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.lifecycle:lifecycle-viewmodel-savedstate"
],
"binaryLayout": "klib"
}
]
}
}

View File

@@ -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"
}
]
}
}

View File

@@ -0,0 +1,327 @@
{
"projectStructure": {
"formatVersion": "0.3.3",
"isPublishedAsRoot": "true",
"variants": [
{
"name": "releaseApiElements",
"sourceSet": [
"jvmMain",
"commonMain"
]
},
{
"name": "releaseRuntimeElements",
"sourceSet": [
"jvmMain",
"commonMain"
]
},
{
"name": "desktopApiElements",
"sourceSet": [
"jvmMain",
"commonMain",
"nonAndroidMain"
]
},
{
"name": "desktopRuntimeElements",
"sourceSet": [
"jvmMain",
"commonMain",
"nonAndroidMain"
]
},
{
"name": "iosArm64ApiElements",
"sourceSet": [
"darwinMain",
"nativeMain",
"commonMain",
"nonAndroidMain"
]
},
{
"name": "iosSimulatorArm64ApiElements",
"sourceSet": [
"darwinMain",
"nativeMain",
"commonMain",
"nonAndroidMain"
]
},
{
"name": "iosX64ApiElements",
"sourceSet": [
"darwinMain",
"nativeMain",
"commonMain",
"nonAndroidMain"
]
},
{
"name": "jsApiElements",
"sourceSet": [
"webMain",
"nonAndroidMain",
"commonMain"
]
},
{
"name": "jsRuntimeElements",
"sourceSet": [
"webMain",
"nonAndroidMain",
"commonMain"
]
},
{
"name": "linuxArm64ApiElements",
"sourceSet": [
"linuxMain",
"nativeMain",
"commonMain",
"nonAndroidMain"
]
},
{
"name": "linuxX64ApiElements",
"sourceSet": [
"linuxMain",
"nativeMain",
"commonMain",
"nonAndroidMain"
]
},
{
"name": "macosArm64ApiElements",
"sourceSet": [
"darwinMain",
"nativeMain",
"commonMain",
"nonAndroidMain"
]
},
{
"name": "macosX64ApiElements",
"sourceSet": [
"darwinMain",
"nativeMain",
"commonMain",
"nonAndroidMain"
]
},
{
"name": "mingwX64ApiElements",
"sourceSet": [
"nativeMain",
"commonMain",
"nonAndroidMain"
]
},
{
"name": "tvosArm64ApiElements",
"sourceSet": [
"darwinMain",
"nativeMain",
"commonMain",
"nonAndroidMain"
]
},
{
"name": "tvosSimulatorArm64ApiElements",
"sourceSet": [
"darwinMain",
"nativeMain",
"commonMain",
"nonAndroidMain"
]
},
{
"name": "tvosX64ApiElements",
"sourceSet": [
"darwinMain",
"nativeMain",
"commonMain",
"nonAndroidMain"
]
},
{
"name": "wasmJsApiElements",
"sourceSet": [
"webMain",
"nonAndroidMain",
"commonMain"
]
},
{
"name": "wasmJsRuntimeElements",
"sourceSet": [
"webMain",
"nonAndroidMain",
"commonMain"
]
},
{
"name": "watchosArm32ApiElements",
"sourceSet": [
"darwinMain",
"nativeMain",
"commonMain",
"nonAndroidMain"
]
},
{
"name": "watchosArm64ApiElements",
"sourceSet": [
"darwinMain",
"nativeMain",
"commonMain",
"nonAndroidMain"
]
},
{
"name": "watchosDeviceArm64ApiElements",
"sourceSet": [
"darwinMain",
"nativeMain",
"commonMain",
"nonAndroidMain"
]
},
{
"name": "watchosSimulatorArm64ApiElements",
"sourceSet": [
"darwinMain",
"nativeMain",
"commonMain",
"nonAndroidMain"
]
},
{
"name": "watchosX64ApiElements",
"sourceSet": [
"darwinMain",
"nativeMain",
"commonMain",
"nonAndroidMain"
]
}
],
"sourceSets": [
{
"name": "commonMain",
"dependsOn": [],
"moduleDependency": [
"androidx.annotation:annotation",
"androidx.savedstate:savedstate",
"androidx.lifecycle:lifecycle-viewmodel",
"org.jetbrains.kotlin:kotlin-stdlib",
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
"org.jetbrains.kotlinx:kotlinx-serialization-core",
"androidx.lifecycle:lifecycle-common"
],
"binaryLayout": "klib"
},
{
"name": "darwinMain",
"dependsOn": [
"nativeMain"
],
"moduleDependency": [
"androidx.annotation:annotation",
"androidx.savedstate:savedstate",
"androidx.lifecycle:lifecycle-viewmodel",
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
"org.jetbrains.kotlinx:kotlinx-serialization-core",
"androidx.lifecycle:lifecycle-common"
],
"sourceSetCInteropMetadataDirectory": "darwinMain-cinterop",
"binaryLayout": "klib",
"hostSpecific": "true"
},
{
"name": "jvmMain",
"dependsOn": [
"commonMain"
],
"moduleDependency": [
"androidx.annotation:annotation",
"androidx.savedstate:savedstate",
"androidx.lifecycle:lifecycle-viewmodel",
"org.jetbrains.kotlin:kotlin-stdlib",
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
"org.jetbrains.kotlinx:kotlinx-serialization-core",
"androidx.lifecycle:lifecycle-common"
],
"binaryLayout": "klib"
},
{
"name": "linuxMain",
"dependsOn": [
"nativeMain"
],
"moduleDependency": [
"androidx.annotation:annotation",
"androidx.savedstate:savedstate",
"androidx.lifecycle:lifecycle-viewmodel",
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
"org.jetbrains.kotlinx:kotlinx-serialization-core",
"androidx.lifecycle:lifecycle-common"
],
"sourceSetCInteropMetadataDirectory": "linuxMain-cinterop",
"binaryLayout": "klib"
},
{
"name": "nativeMain",
"dependsOn": [
"commonMain",
"nonAndroidMain"
],
"moduleDependency": [
"androidx.annotation:annotation",
"androidx.savedstate:savedstate",
"androidx.lifecycle:lifecycle-viewmodel",
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
"org.jetbrains.kotlinx:kotlinx-serialization-core",
"androidx.lifecycle:lifecycle-common"
],
"sourceSetCInteropMetadataDirectory": "nativeMain-cinterop",
"binaryLayout": "klib"
},
{
"name": "nonAndroidMain",
"dependsOn": [
"commonMain"
],
"moduleDependency": [
"androidx.annotation:annotation",
"androidx.savedstate:savedstate",
"androidx.lifecycle:lifecycle-viewmodel",
"org.jetbrains.kotlin:kotlin-stdlib",
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
"org.jetbrains.kotlinx:kotlinx-serialization-core",
"androidx.lifecycle:lifecycle-common"
],
"binaryLayout": "klib"
},
{
"name": "webMain",
"dependsOn": [
"nonAndroidMain"
],
"moduleDependency": [
"androidx.annotation:annotation",
"androidx.savedstate:savedstate",
"androidx.lifecycle:lifecycle-viewmodel",
"org.jetbrains.kotlin:kotlin-stdlib",
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
"org.jetbrains.kotlinx:kotlinx-serialization-core",
"androidx.lifecycle:lifecycle-common"
],
"binaryLayout": "klib"
}
]
}
}

View File

@@ -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"
}
]
}
}

View File

@@ -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"
}
]
}
}

View File

@@ -0,0 +1,257 @@
{
"projectStructure": {
"formatVersion": "0.3.3",
"isPublishedAsRoot": "true",
"variants": [
{
"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": "watchosDeviceArm64ApiElements",
"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",
"androidx.lifecycle:lifecycle-common",
"androidx.annotation:annotation"
],
"binaryLayout": "klib"
},
{
"name": "jvmMain",
"dependsOn": [
"commonMain"
],
"moduleDependency": [
"org.jetbrains.kotlin:kotlin-stdlib",
"androidx.lifecycle:lifecycle-common",
"androidx.annotation:annotation",
"androidx.arch.core:core-common"
],
"binaryLayout": "klib"
},
{
"name": "nativeMain",
"dependsOn": [
"nonJvmMain"
],
"moduleDependency": [
"androidx.lifecycle:lifecycle-common",
"androidx.annotation:annotation"
],
"sourceSetCInteropMetadataDirectory": "nativeMain-cinterop",
"binaryLayout": "klib"
},
{
"name": "nonJvmMain",
"dependsOn": [
"commonMain"
],
"moduleDependency": [
"org.jetbrains.kotlin:kotlin-stdlib",
"androidx.lifecycle:lifecycle-common",
"androidx.annotation:annotation"
],
"binaryLayout": "klib"
},
{
"name": "webMain",
"dependsOn": [
"nonJvmMain"
],
"moduleDependency": [
"org.jetbrains.kotlin:kotlin-stdlib",
"androidx.lifecycle:lifecycle-common",
"androidx.annotation:annotation"
],
"binaryLayout": "klib"
}
]
}
}

View File

@@ -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"
}
]
}
}

View File

@@ -0,0 +1,323 @@
{
"projectStructure": {
"formatVersion": "0.3.3",
"isPublishedAsRoot": "true",
"variants": [
{
"name": "releaseApiElements",
"sourceSet": [
"jvmMain",
"commonMain"
]
},
{
"name": "releaseRuntimeElements",
"sourceSet": [
"jvmMain",
"commonMain"
]
},
{
"name": "desktopApiElements",
"sourceSet": [
"jvmMain",
"commonMain"
]
},
{
"name": "desktopRuntimeElements",
"sourceSet": [
"jvmMain",
"commonMain"
]
},
{
"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": "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": [
"androidx.annotation:annotation",
"org.jetbrains.kotlin:kotlin-stdlib",
"org.jetbrains.kotlinx:kotlinx-coroutines-core"
],
"binaryLayout": "klib"
},
{
"name": "darwinMain",
"dependsOn": [
"unixMain"
],
"moduleDependency": [
"androidx.annotation:annotation",
"org.jetbrains.kotlinx:kotlinx-coroutines-core"
],
"sourceSetCInteropMetadataDirectory": "darwinMain-cinterop",
"binaryLayout": "klib",
"hostSpecific": "true"
},
{
"name": "jvmMain",
"dependsOn": [
"commonMain"
],
"moduleDependency": [
"androidx.annotation:annotation",
"org.jetbrains.kotlin:kotlin-stdlib",
"org.jetbrains.kotlinx:kotlinx-coroutines-core"
],
"binaryLayout": "klib"
},
{
"name": "linuxMain",
"dependsOn": [
"unixMain"
],
"moduleDependency": [
"androidx.annotation:annotation",
"org.jetbrains.kotlinx:kotlinx-coroutines-core"
],
"sourceSetCInteropMetadataDirectory": "linuxMain-cinterop",
"binaryLayout": "klib"
},
{
"name": "nativeMain",
"dependsOn": [
"nonJvmMain"
],
"moduleDependency": [
"androidx.annotation:annotation",
"org.jetbrains.kotlinx:kotlinx-coroutines-core"
],
"sourceSetCInteropMetadataDirectory": "nativeMain-cinterop",
"binaryLayout": "klib"
},
{
"name": "nonJvmMain",
"dependsOn": [
"commonMain"
],
"moduleDependency": [
"androidx.annotation:annotation",
"org.jetbrains.kotlin:kotlin-stdlib",
"org.jetbrains.kotlinx:kotlinx-coroutines-core"
],
"binaryLayout": "klib"
},
{
"name": "unixMain",
"dependsOn": [
"nativeMain"
],
"moduleDependency": [
"androidx.annotation:annotation",
"org.jetbrains.kotlinx:kotlinx-coroutines-core"
],
"sourceSetCInteropMetadataDirectory": "unixMain-cinterop",
"binaryLayout": "klib"
},
{
"name": "webMain",
"dependsOn": [
"nonJvmMain"
],
"moduleDependency": [
"androidx.annotation:annotation",
"org.jetbrains.kotlin:kotlin-stdlib",
"org.jetbrains.kotlinx:kotlinx-coroutines-core"
],
"binaryLayout": "klib"
}
]
}
}

View File

@@ -0,0 +1,319 @@
{
"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": [
"linuxMain",
"nativeMain",
"commonMain",
"nonAndroidMain"
]
},
{
"name": "linuxX64ApiElements",
"sourceSet": [
"linuxMain",
"nativeMain",
"commonMain",
"nonAndroidMain"
]
},
{
"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": "linuxMain",
"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": "linuxMain-cinterop",
"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"
},
{
"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"
}
]
}
}

View File

@@ -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"
}
]
}
}

View File

@@ -0,0 +1,22 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@android:style/Theme.Material.Light.NoActionBar">
<activity
android:exported="true"
android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>

View File

@@ -0,0 +1,25 @@
package dev.carlosmartino.triplogic
import android.os.Bundle
import androidx.activity.ComponentActivity
import androidx.activity.compose.setContent
import androidx.activity.enableEdgeToEdge
import androidx.compose.runtime.Composable
import androidx.compose.ui.tooling.preview.Preview
class MainActivity : ComponentActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
enableEdgeToEdge()
super.onCreate(savedInstanceState)
setContent {
App()
}
}
}
@Preview
@Composable
fun AppAndroidPreview() {
App()
}

View File

@@ -0,0 +1,9 @@
package dev.carlosmartino.triplogic
import android.os.Build
class AndroidPlatform : Platform {
override val name: String = "Android ${Build.VERSION.SDK_INT}"
}
actual fun getPlatform(): Platform = AndroidPlatform()

View File

@@ -0,0 +1,30 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:aapt="http://schemas.android.com/aapt"
android:width="108dp"
android:height="108dp"
android:viewportWidth="108"
android:viewportHeight="108">
<path android:pathData="M31,63.928c0,0 6.4,-11 12.1,-13.1c7.2,-2.6 26,-1.4 26,-1.4l38.1,38.1L107,108.928l-32,-1L31,63.928z">
<aapt:attr name="android:fillColor">
<gradient
android:endX="85.84757"
android:endY="92.4963"
android:startX="42.9492"
android:startY="49.59793"
android:type="linear">
<item
android:color="#44000000"
android:offset="0.0" />
<item
android:color="#00000000"
android:offset="1.0" />
</gradient>
</aapt:attr>
</path>
<path
android:fillColor="#FFFFFF"
android:fillType="nonZero"
android:pathData="M65.3,45.828l3.8,-6.6c0.2,-0.4 0.1,-0.9 -0.3,-1.1c-0.4,-0.2 -0.9,-0.1 -1.1,0.3l-3.9,6.7c-6.3,-2.8 -13.4,-2.8 -19.7,0l-3.9,-6.7c-0.2,-0.4 -0.7,-0.5 -1.1,-0.3C38.8,38.328 38.7,38.828 38.9,39.228l3.8,6.6C36.2,49.428 31.7,56.028 31,63.928h46C76.3,56.028 71.8,49.428 65.3,45.828zM43.4,57.328c-0.8,0 -1.5,-0.5 -1.8,-1.2c-0.3,-0.7 -0.1,-1.5 0.4,-2.1c0.5,-0.5 1.4,-0.7 2.1,-0.4c0.7,0.3 1.2,1 1.2,1.8C45.3,56.528 44.5,57.328 43.4,57.328L43.4,57.328zM64.6,57.328c-0.8,0 -1.5,-0.5 -1.8,-1.2s-0.1,-1.5 0.4,-2.1c0.5,-0.5 1.4,-0.7 2.1,-0.4c0.7,0.3 1.2,1 1.2,1.8C66.5,56.528 65.6,57.328 64.6,57.328L64.6,57.328z"
android:strokeWidth="1"
android:strokeColor="#00000000" />
</vector>

View File

@@ -0,0 +1,170 @@
<?xml version="1.0" encoding="utf-8"?>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="108dp"
android:height="108dp"
android:viewportWidth="108"
android:viewportHeight="108">
<path
android:fillColor="#3DDC84"
android:pathData="M0,0h108v108h-108z" />
<path
android:fillColor="#00000000"
android:pathData="M9,0L9,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,0L19,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M29,0L29,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M39,0L39,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M49,0L49,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M59,0L59,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M69,0L69,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M79,0L79,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M89,0L89,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M99,0L99,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,9L108,9"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,19L108,19"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,29L108,29"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,39L108,39"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,49L108,49"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,59L108,59"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,69L108,69"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,79L108,79"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,89L108,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,99L108,99"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,29L89,29"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,39L89,39"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,49L89,49"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,59L89,59"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,69L89,69"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,79L89,79"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M29,19L29,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M39,19L39,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M49,19L49,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M59,19L59,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M69,19L69,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M79,19L79,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
</vector>

View File

@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@drawable/ic_launcher_background" />
<foreground android:drawable="@drawable/ic_launcher_foreground" />
</adaptive-icon>

View File

@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@drawable/ic_launcher_background" />
<foreground android:drawable="@drawable/ic_launcher_foreground" />
</adaptive-icon>

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

View File

@@ -0,0 +1,3 @@
<resources>
<string name="app_name">Triplogic</string>
</resources>

View File

@@ -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>

View File

@@ -0,0 +1,49 @@
package dev.carlosmartino.triplogic
import androidx.compose.animation.AnimatedVisibility
import androidx.compose.foundation.Image
import androidx.compose.foundation.background
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 triplogic.composeapp.generated.resources.Res
import triplogic.composeapp.generated.resources.compose_multiplatform
@Composable
@Preview
fun App() {
MaterialTheme {
var showContent by remember { mutableStateOf(false) }
Column(
modifier = Modifier
.background(MaterialTheme.colorScheme.primaryContainer)
.safeContentPadding()
.fillMaxSize(),
horizontalAlignment = Alignment.CenterHorizontally,
) {
Button(onClick = { showContent = !showContent }) {
Text("Click me!")
}
AnimatedVisibility(showContent) {
val greeting = remember { Greeting().greet() }
Column(
modifier = Modifier.fillMaxWidth(),
horizontalAlignment = Alignment.CenterHorizontally,
) {
Image(painterResource(Res.drawable.compose_multiplatform), null)
Text("Compose: $greeting")
}
}
}
}
}

View File

@@ -0,0 +1,9 @@
package dev.carlosmartino.triplogic
class Greeting {
private val platform = getPlatform()
fun greet(): String {
return "Hello, ${platform.name}!"
}
}

View File

@@ -0,0 +1,7 @@
package dev.carlosmartino.triplogic
interface Platform {
val name: String
}
expect fun getPlatform(): Platform

View File

@@ -0,0 +1,12 @@
package dev.carlosmartino.triplogic
import kotlin.test.Test
import kotlin.test.assertEquals
class ComposeAppCommonTest {
@Test
fun example() {
assertEquals(3, 1 + 2)
}
}

View File

@@ -0,0 +1,5 @@
package dev.carlosmartino.triplogic
import androidx.compose.ui.window.ComposeUIViewController
fun MainViewController() = ComposeUIViewController { App() }

View File

@@ -0,0 +1,9 @@
package dev.carlosmartino.triplogic
import platform.UIKit.UIDevice
class IOSPlatform: Platform {
override val name: String = UIDevice.currentDevice.systemName() + " " + UIDevice.currentDevice.systemVersion
}
actual fun getPlatform(): Platform = IOSPlatform()