kotlin is here #3
182
client/.gitignore
vendored
182
client/.gitignore
vendored
@ -1,164 +1,18 @@
|
|||||||
# Byte-compiled / optimized / DLL files
|
*.iml
|
||||||
__pycache__/
|
.kotlin
|
||||||
*.py[cod]
|
.gradle
|
||||||
*$py.class
|
**/build/
|
||||||
.idead
|
xcuserdata
|
||||||
|
!src/**/build/
|
||||||
# C extensions
|
local.properties
|
||||||
*.so
|
.idea
|
||||||
|
.DS_Store
|
||||||
# Distribution / packaging
|
captures
|
||||||
.Python
|
.externalNativeBuild
|
||||||
build/
|
.cxx
|
||||||
develop-eggs/
|
*.xcodeproj/*
|
||||||
dist/
|
!*.xcodeproj/project.pbxproj
|
||||||
downloads/
|
!*.xcodeproj/xcshareddata/
|
||||||
eggs/
|
!*.xcodeproj/project.xcworkspace/
|
||||||
.eggs/
|
!*.xcworkspace/contents.xcworkspacedata
|
||||||
lib/
|
**/xcshareddata/WorkspaceSettings.xcsettings
|
||||||
lib64/
|
|
||||||
parts/
|
|
||||||
sdist/
|
|
||||||
var/
|
|
||||||
wheels/
|
|
||||||
share/python-wheels/
|
|
||||||
*.egg-info/
|
|
||||||
.installed.cfg
|
|
||||||
*.egg
|
|
||||||
MANIFEST
|
|
||||||
|
|
||||||
# PyInstaller
|
|
||||||
# Usually these files are written by a python script from a template
|
|
||||||
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
|
||||||
*.manifest
|
|
||||||
*.spec
|
|
||||||
|
|
||||||
# Installer logs
|
|
||||||
pip-log.txt
|
|
||||||
pip-delete-this-directory.txt
|
|
||||||
|
|
||||||
# Unit test / coverage reports
|
|
||||||
htmlcov/
|
|
||||||
.tox/
|
|
||||||
.nox/
|
|
||||||
.coverage
|
|
||||||
.coverage.*
|
|
||||||
.cache
|
|
||||||
nosetests.xml
|
|
||||||
coverage.xml
|
|
||||||
*.cover
|
|
||||||
*.py,cover
|
|
||||||
.hypothesis/
|
|
||||||
.pytest_cache/
|
|
||||||
cover/
|
|
||||||
|
|
||||||
# Translations
|
|
||||||
*.mo
|
|
||||||
*.pot
|
|
||||||
|
|
||||||
# Django stuff:
|
|
||||||
*.log
|
|
||||||
local_settings.py
|
|
||||||
db.sqlite3
|
|
||||||
db.sqlite3-journal
|
|
||||||
|
|
||||||
# Flask stuff:
|
|
||||||
instance/
|
|
||||||
.webassets-cache
|
|
||||||
|
|
||||||
# Scrapy stuff:
|
|
||||||
.scrapy
|
|
||||||
|
|
||||||
# Sphinx documentation
|
|
||||||
docs/_build/
|
|
||||||
|
|
||||||
# PyBuilder
|
|
||||||
.pybuilder/
|
|
||||||
target/
|
|
||||||
|
|
||||||
# Jupyter Notebook
|
|
||||||
.ipynb_checkpoints
|
|
||||||
|
|
||||||
# IPython
|
|
||||||
profile_default/
|
|
||||||
ipython_config.py
|
|
||||||
|
|
||||||
# pyenv
|
|
||||||
# For a library or package, you might want to ignore these files since the code is
|
|
||||||
# intended to run in multiple environments; otherwise, check them in:
|
|
||||||
# .python-version
|
|
||||||
|
|
||||||
# pipenv
|
|
||||||
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
|
|
||||||
# However, in case of collaboration, if having platform-specific dependencies or dependencies
|
|
||||||
# having no cross-platform support, pipenv may install dependencies that don't work, or not
|
|
||||||
# install all needed dependencies.
|
|
||||||
#Pipfile.lock
|
|
||||||
|
|
||||||
# poetry
|
|
||||||
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
|
|
||||||
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
|
||||||
# commonly ignored for libraries.
|
|
||||||
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
|
|
||||||
*.lock
|
|
||||||
|
|
||||||
# pdm
|
|
||||||
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
|
|
||||||
#pdm.lock
|
|
||||||
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
|
|
||||||
# in version control.
|
|
||||||
# https://pdm.fming.dev/#use-with-ide
|
|
||||||
.pdm.toml
|
|
||||||
|
|
||||||
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
|
|
||||||
__pypackages__/
|
|
||||||
|
|
||||||
# Celery stuff
|
|
||||||
celerybeat-schedule
|
|
||||||
celerybeat.pid
|
|
||||||
|
|
||||||
# SageMath parsed files
|
|
||||||
*.sage.py
|
|
||||||
|
|
||||||
# Environments
|
|
||||||
.env
|
|
||||||
.venv
|
|
||||||
env/
|
|
||||||
venv/
|
|
||||||
ENV/
|
|
||||||
env.bak/
|
|
||||||
venv.bak/
|
|
||||||
|
|
||||||
# Spyder project settings
|
|
||||||
.spyderproject
|
|
||||||
.spyproject
|
|
||||||
|
|
||||||
# Rope project settings
|
|
||||||
.ropeproject
|
|
||||||
|
|
||||||
# mkdocs documentation
|
|
||||||
/site
|
|
||||||
|
|
||||||
# mypy
|
|
||||||
.mypy_cache/
|
|
||||||
.dmypy.json
|
|
||||||
dmypy.json
|
|
||||||
|
|
||||||
# Pyre type checker
|
|
||||||
.pyre/
|
|
||||||
|
|
||||||
# pytype static type analyzer
|
|
||||||
.pytype/
|
|
||||||
|
|
||||||
# Cython debug symbols
|
|
||||||
cython_debug/
|
|
||||||
|
|
||||||
# PyCharm
|
|
||||||
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
|
|
||||||
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
|
|
||||||
# and can be added to the global gitignore or merged into this file. For a more nuclear
|
|
||||||
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
|
||||||
#.idea/
|
|
||||||
|
|
||||||
# Flet
|
|
||||||
storage/
|
|
||||||
BIN
client/.gradle/8.9/checksums/checksums.lock
Normal file
BIN
client/.gradle/8.9/checksums/checksums.lock
Normal file
Binary file not shown.
BIN
client/.gradle/8.9/checksums/md5-checksums.bin
Normal file
BIN
client/.gradle/8.9/checksums/md5-checksums.bin
Normal file
Binary file not shown.
BIN
client/.gradle/8.9/checksums/sha1-checksums.bin
Normal file
BIN
client/.gradle/8.9/checksums/sha1-checksums.bin
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1 @@
|
|||||||
|
<EFBFBD>sdqaonr34bcpvouv6acithyp3a<0C>9<EFBFBD><39><EFBFBD>J.֛<><18>/!<21><02>classes<10>t!<21>"<22>A<EFBFBD><41><EFBFBD>潜<EFBFBD>kF<6B>sources<10><><EFBFBD>1>Mt<4D>&<26><><EFBFBD>_
|
||||||
@ -0,0 +1,555 @@
|
|||||||
|
package org.gradle.accessors.dm;
|
||||||
|
|
||||||
|
import org.gradle.api.NonNullApi;
|
||||||
|
import org.gradle.api.artifacts.MinimalExternalModuleDependency;
|
||||||
|
import org.gradle.plugin.use.PluginDependency;
|
||||||
|
import org.gradle.api.artifacts.ExternalModuleDependencyBundle;
|
||||||
|
import org.gradle.api.artifacts.MutableVersionConstraint;
|
||||||
|
import org.gradle.api.provider.Provider;
|
||||||
|
import org.gradle.api.model.ObjectFactory;
|
||||||
|
import org.gradle.api.provider.ProviderFactory;
|
||||||
|
import org.gradle.api.internal.catalog.AbstractExternalDependencyFactory;
|
||||||
|
import org.gradle.api.internal.catalog.DefaultVersionCatalog;
|
||||||
|
import java.util.Map;
|
||||||
|
import org.gradle.api.internal.attributes.ImmutableAttributesFactory;
|
||||||
|
import org.gradle.api.internal.artifacts.dsl.CapabilityNotationParser;
|
||||||
|
import javax.inject.Inject;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A catalog of dependencies accessible via the {@code libs} extension.
|
||||||
|
*/
|
||||||
|
@NonNullApi
|
||||||
|
public class LibrariesForLibs extends AbstractExternalDependencyFactory {
|
||||||
|
|
||||||
|
private final AbstractExternalDependencyFactory owner = this;
|
||||||
|
private final AndroidxLibraryAccessors laccForAndroidxLibraryAccessors = new AndroidxLibraryAccessors(owner);
|
||||||
|
private final KotlinLibraryAccessors laccForKotlinLibraryAccessors = new KotlinLibraryAccessors(owner);
|
||||||
|
private final KotlinxLibraryAccessors laccForKotlinxLibraryAccessors = new KotlinxLibraryAccessors(owner);
|
||||||
|
private final VersionAccessors vaccForVersionAccessors = new VersionAccessors(providers, config);
|
||||||
|
private final BundleAccessors baccForBundleAccessors = new BundleAccessors(objects, providers, config, attributesFactory, capabilityNotationParser);
|
||||||
|
private final PluginAccessors paccForPluginAccessors = new PluginAccessors(providers, config);
|
||||||
|
|
||||||
|
@Inject
|
||||||
|
public LibrariesForLibs(DefaultVersionCatalog config, ProviderFactory providers, ObjectFactory objects, ImmutableAttributesFactory attributesFactory, CapabilityNotationParser capabilityNotationParser) {
|
||||||
|
super(config, providers, objects, attributesFactory, capabilityNotationParser);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Dependency provider for <b>junit</b> with <b>junit:junit</b> coordinates and
|
||||||
|
* with version reference <b>junit</b>
|
||||||
|
* <p>
|
||||||
|
* This dependency was declared in catalog libs.versions.toml
|
||||||
|
*/
|
||||||
|
public Provider<MinimalExternalModuleDependency> getJunit() {
|
||||||
|
return create("junit");
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Group of libraries at <b>androidx</b>
|
||||||
|
*/
|
||||||
|
public AndroidxLibraryAccessors getAndroidx() {
|
||||||
|
return laccForAndroidxLibraryAccessors;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Group of libraries at <b>kotlin</b>
|
||||||
|
*/
|
||||||
|
public KotlinLibraryAccessors getKotlin() {
|
||||||
|
return laccForKotlinLibraryAccessors;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Group of libraries at <b>kotlinx</b>
|
||||||
|
*/
|
||||||
|
public KotlinxLibraryAccessors getKotlinx() {
|
||||||
|
return laccForKotlinxLibraryAccessors;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Group of versions at <b>versions</b>
|
||||||
|
*/
|
||||||
|
public VersionAccessors getVersions() {
|
||||||
|
return vaccForVersionAccessors;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Group of bundles at <b>bundles</b>
|
||||||
|
*/
|
||||||
|
public BundleAccessors getBundles() {
|
||||||
|
return baccForBundleAccessors;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Group of plugins at <b>plugins</b>
|
||||||
|
*/
|
||||||
|
public PluginAccessors getPlugins() {
|
||||||
|
return paccForPluginAccessors;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static class AndroidxLibraryAccessors extends SubDependencyFactory {
|
||||||
|
private final AndroidxActivityLibraryAccessors laccForAndroidxActivityLibraryAccessors = new AndroidxActivityLibraryAccessors(owner);
|
||||||
|
private final AndroidxCoreLibraryAccessors laccForAndroidxCoreLibraryAccessors = new AndroidxCoreLibraryAccessors(owner);
|
||||||
|
private final AndroidxEspressoLibraryAccessors laccForAndroidxEspressoLibraryAccessors = new AndroidxEspressoLibraryAccessors(owner);
|
||||||
|
private final AndroidxLifecycleLibraryAccessors laccForAndroidxLifecycleLibraryAccessors = new AndroidxLifecycleLibraryAccessors(owner);
|
||||||
|
private final AndroidxTestExtLibraryAccessors laccForAndroidxTestExtLibraryAccessors = new AndroidxTestExtLibraryAccessors(owner);
|
||||||
|
|
||||||
|
public AndroidxLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Dependency provider for <b>appcompat</b> with <b>androidx.appcompat:appcompat</b> coordinates and
|
||||||
|
* with version reference <b>androidx.appcompat</b>
|
||||||
|
* <p>
|
||||||
|
* This dependency was declared in catalog libs.versions.toml
|
||||||
|
*/
|
||||||
|
public Provider<MinimalExternalModuleDependency> getAppcompat() {
|
||||||
|
return create("androidx.appcompat");
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Dependency provider for <b>constraintlayout</b> with <b>androidx.constraintlayout:constraintlayout</b> coordinates and
|
||||||
|
* with version reference <b>androidx.constraintlayout</b>
|
||||||
|
* <p>
|
||||||
|
* This dependency was declared in catalog libs.versions.toml
|
||||||
|
*/
|
||||||
|
public Provider<MinimalExternalModuleDependency> getConstraintlayout() {
|
||||||
|
return create("androidx.constraintlayout");
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Group of libraries at <b>androidx.activity</b>
|
||||||
|
*/
|
||||||
|
public AndroidxActivityLibraryAccessors getActivity() {
|
||||||
|
return laccForAndroidxActivityLibraryAccessors;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Group of libraries at <b>androidx.core</b>
|
||||||
|
*/
|
||||||
|
public AndroidxCoreLibraryAccessors getCore() {
|
||||||
|
return laccForAndroidxCoreLibraryAccessors;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Group of libraries at <b>androidx.espresso</b>
|
||||||
|
*/
|
||||||
|
public AndroidxEspressoLibraryAccessors getEspresso() {
|
||||||
|
return laccForAndroidxEspressoLibraryAccessors;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Group of libraries at <b>androidx.lifecycle</b>
|
||||||
|
*/
|
||||||
|
public AndroidxLifecycleLibraryAccessors getLifecycle() {
|
||||||
|
return laccForAndroidxLifecycleLibraryAccessors;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Group of libraries at <b>androidx.testExt</b>
|
||||||
|
*/
|
||||||
|
public AndroidxTestExtLibraryAccessors getTestExt() {
|
||||||
|
return laccForAndroidxTestExtLibraryAccessors;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public static class AndroidxActivityLibraryAccessors extends SubDependencyFactory {
|
||||||
|
|
||||||
|
public AndroidxActivityLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Dependency provider for <b>compose</b> with <b>androidx.activity:activity-compose</b> coordinates and
|
||||||
|
* with version reference <b>androidx.activity</b>
|
||||||
|
* <p>
|
||||||
|
* This dependency was declared in catalog libs.versions.toml
|
||||||
|
*/
|
||||||
|
public Provider<MinimalExternalModuleDependency> getCompose() {
|
||||||
|
return create("androidx.activity.compose");
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public static class AndroidxCoreLibraryAccessors extends SubDependencyFactory {
|
||||||
|
|
||||||
|
public AndroidxCoreLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Dependency provider for <b>ktx</b> with <b>androidx.core:core-ktx</b> coordinates and
|
||||||
|
* with version reference <b>androidx.core</b>
|
||||||
|
* <p>
|
||||||
|
* This dependency was declared in catalog libs.versions.toml
|
||||||
|
*/
|
||||||
|
public Provider<MinimalExternalModuleDependency> getKtx() {
|
||||||
|
return create("androidx.core.ktx");
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public static class AndroidxEspressoLibraryAccessors extends SubDependencyFactory {
|
||||||
|
|
||||||
|
public AndroidxEspressoLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Dependency provider for <b>core</b> with <b>androidx.test.espresso:espresso-core</b> coordinates and
|
||||||
|
* with version reference <b>androidx.espresso</b>
|
||||||
|
* <p>
|
||||||
|
* This dependency was declared in catalog libs.versions.toml
|
||||||
|
*/
|
||||||
|
public Provider<MinimalExternalModuleDependency> getCore() {
|
||||||
|
return create("androidx.espresso.core");
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public static class AndroidxLifecycleLibraryAccessors extends SubDependencyFactory {
|
||||||
|
|
||||||
|
public AndroidxLifecycleLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Dependency provider for <b>runtimeCompose</b> with <b>org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose</b> coordinates and
|
||||||
|
* with version reference <b>androidx.lifecycle</b>
|
||||||
|
* <p>
|
||||||
|
* This dependency was declared in catalog libs.versions.toml
|
||||||
|
*/
|
||||||
|
public Provider<MinimalExternalModuleDependency> getRuntimeCompose() {
|
||||||
|
return create("androidx.lifecycle.runtimeCompose");
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Dependency provider for <b>viewmodel</b> with <b>org.jetbrains.androidx.lifecycle:lifecycle-viewmodel</b> coordinates and
|
||||||
|
* with version reference <b>androidx.lifecycle</b>
|
||||||
|
* <p>
|
||||||
|
* This dependency was declared in catalog libs.versions.toml
|
||||||
|
*/
|
||||||
|
public Provider<MinimalExternalModuleDependency> getViewmodel() {
|
||||||
|
return create("androidx.lifecycle.viewmodel");
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public static class AndroidxTestExtLibraryAccessors extends SubDependencyFactory {
|
||||||
|
|
||||||
|
public AndroidxTestExtLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Dependency provider for <b>junit</b> with <b>androidx.test.ext:junit</b> coordinates and
|
||||||
|
* with version reference <b>androidx.testExt</b>
|
||||||
|
* <p>
|
||||||
|
* This dependency was declared in catalog libs.versions.toml
|
||||||
|
*/
|
||||||
|
public Provider<MinimalExternalModuleDependency> getJunit() {
|
||||||
|
return create("androidx.testExt.junit");
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public static class KotlinLibraryAccessors extends SubDependencyFactory {
|
||||||
|
|
||||||
|
public KotlinLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Dependency provider for <b>test</b> with <b>org.jetbrains.kotlin:kotlin-test</b> coordinates and
|
||||||
|
* with version reference <b>kotlin</b>
|
||||||
|
* <p>
|
||||||
|
* This dependency was declared in catalog libs.versions.toml
|
||||||
|
*/
|
||||||
|
public Provider<MinimalExternalModuleDependency> getTest() {
|
||||||
|
return create("kotlin.test");
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Dependency provider for <b>testJunit</b> with <b>org.jetbrains.kotlin:kotlin-test-junit</b> coordinates and
|
||||||
|
* with version reference <b>kotlin</b>
|
||||||
|
* <p>
|
||||||
|
* This dependency was declared in catalog libs.versions.toml
|
||||||
|
*/
|
||||||
|
public Provider<MinimalExternalModuleDependency> getTestJunit() {
|
||||||
|
return create("kotlin.testJunit");
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public static class KotlinxLibraryAccessors extends SubDependencyFactory {
|
||||||
|
|
||||||
|
public KotlinxLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Dependency provider for <b>coroutinesSwing</b> with <b>org.jetbrains.kotlinx:kotlinx-coroutines-swing</b> coordinates and
|
||||||
|
* with version reference <b>kotlinx.coroutines</b>
|
||||||
|
* <p>
|
||||||
|
* This dependency was declared in catalog libs.versions.toml
|
||||||
|
*/
|
||||||
|
public Provider<MinimalExternalModuleDependency> getCoroutinesSwing() {
|
||||||
|
return create("kotlinx.coroutinesSwing");
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public static class VersionAccessors extends VersionFactory {
|
||||||
|
|
||||||
|
private final AndroidVersionAccessors vaccForAndroidVersionAccessors = new AndroidVersionAccessors(providers, config);
|
||||||
|
private final AndroidxVersionAccessors vaccForAndroidxVersionAccessors = new AndroidxVersionAccessors(providers, config);
|
||||||
|
private final KotlinxVersionAccessors vaccForKotlinxVersionAccessors = new KotlinxVersionAccessors(providers, config);
|
||||||
|
public VersionAccessors(ProviderFactory providers, DefaultVersionCatalog config) { super(providers, config); }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Version alias <b>agp</b> with value <b>8.7.3</b>
|
||||||
|
* <p>
|
||||||
|
* If the version is a rich version and cannot be represented as a
|
||||||
|
* single version string, an empty string is returned.
|
||||||
|
* <p>
|
||||||
|
* This version was declared in catalog libs.versions.toml
|
||||||
|
*/
|
||||||
|
public Provider<String> getAgp() { return getVersion("agp"); }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Version alias <b>composeHotReload</b> with value <b>1.0.0-alpha11</b>
|
||||||
|
* <p>
|
||||||
|
* If the version is a rich version and cannot be represented as a
|
||||||
|
* single version string, an empty string is returned.
|
||||||
|
* <p>
|
||||||
|
* This version was declared in catalog libs.versions.toml
|
||||||
|
*/
|
||||||
|
public Provider<String> getComposeHotReload() { return getVersion("composeHotReload"); }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Version alias <b>composeMultiplatform</b> with value <b>1.8.2</b>
|
||||||
|
* <p>
|
||||||
|
* If the version is a rich version and cannot be represented as a
|
||||||
|
* single version string, an empty string is returned.
|
||||||
|
* <p>
|
||||||
|
* This version was declared in catalog libs.versions.toml
|
||||||
|
*/
|
||||||
|
public Provider<String> getComposeMultiplatform() { return getVersion("composeMultiplatform"); }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Version alias <b>junit</b> with value <b>4.13.2</b>
|
||||||
|
* <p>
|
||||||
|
* If the version is a rich version and cannot be represented as a
|
||||||
|
* single version string, an empty string is returned.
|
||||||
|
* <p>
|
||||||
|
* This version was declared in catalog libs.versions.toml
|
||||||
|
*/
|
||||||
|
public Provider<String> getJunit() { return getVersion("junit"); }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Version alias <b>kotlin</b> with value <b>2.2.0</b>
|
||||||
|
* <p>
|
||||||
|
* If the version is a rich version and cannot be represented as a
|
||||||
|
* single version string, an empty string is returned.
|
||||||
|
* <p>
|
||||||
|
* This version was declared in catalog libs.versions.toml
|
||||||
|
*/
|
||||||
|
public Provider<String> getKotlin() { return getVersion("kotlin"); }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Group of versions at <b>versions.android</b>
|
||||||
|
*/
|
||||||
|
public AndroidVersionAccessors getAndroid() {
|
||||||
|
return vaccForAndroidVersionAccessors;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Group of versions at <b>versions.androidx</b>
|
||||||
|
*/
|
||||||
|
public AndroidxVersionAccessors getAndroidx() {
|
||||||
|
return vaccForAndroidxVersionAccessors;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Group of versions at <b>versions.kotlinx</b>
|
||||||
|
*/
|
||||||
|
public KotlinxVersionAccessors getKotlinx() {
|
||||||
|
return vaccForKotlinxVersionAccessors;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public static class AndroidVersionAccessors extends VersionFactory {
|
||||||
|
|
||||||
|
public AndroidVersionAccessors(ProviderFactory providers, DefaultVersionCatalog config) { super(providers, config); }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Version alias <b>android.compileSdk</b> with value <b>35</b>
|
||||||
|
* <p>
|
||||||
|
* If the version is a rich version and cannot be represented as a
|
||||||
|
* single version string, an empty string is returned.
|
||||||
|
* <p>
|
||||||
|
* This version was declared in catalog libs.versions.toml
|
||||||
|
*/
|
||||||
|
public Provider<String> getCompileSdk() { return getVersion("android.compileSdk"); }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Version alias <b>android.minSdk</b> with value <b>24</b>
|
||||||
|
* <p>
|
||||||
|
* If the version is a rich version and cannot be represented as a
|
||||||
|
* single version string, an empty string is returned.
|
||||||
|
* <p>
|
||||||
|
* This version was declared in catalog libs.versions.toml
|
||||||
|
*/
|
||||||
|
public Provider<String> getMinSdk() { return getVersion("android.minSdk"); }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Version alias <b>android.targetSdk</b> with value <b>35</b>
|
||||||
|
* <p>
|
||||||
|
* If the version is a rich version and cannot be represented as a
|
||||||
|
* single version string, an empty string is returned.
|
||||||
|
* <p>
|
||||||
|
* This version was declared in catalog libs.versions.toml
|
||||||
|
*/
|
||||||
|
public Provider<String> getTargetSdk() { return getVersion("android.targetSdk"); }
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public static class AndroidxVersionAccessors extends VersionFactory {
|
||||||
|
|
||||||
|
public AndroidxVersionAccessors(ProviderFactory providers, DefaultVersionCatalog config) { super(providers, config); }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Version alias <b>androidx.activity</b> with value <b>1.10.1</b>
|
||||||
|
* <p>
|
||||||
|
* If the version is a rich version and cannot be represented as a
|
||||||
|
* single version string, an empty string is returned.
|
||||||
|
* <p>
|
||||||
|
* This version was declared in catalog libs.versions.toml
|
||||||
|
*/
|
||||||
|
public Provider<String> getActivity() { return getVersion("androidx.activity"); }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Version alias <b>androidx.appcompat</b> with value <b>1.7.1</b>
|
||||||
|
* <p>
|
||||||
|
* If the version is a rich version and cannot be represented as a
|
||||||
|
* single version string, an empty string is returned.
|
||||||
|
* <p>
|
||||||
|
* This version was declared in catalog libs.versions.toml
|
||||||
|
*/
|
||||||
|
public Provider<String> getAppcompat() { return getVersion("androidx.appcompat"); }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Version alias <b>androidx.constraintlayout</b> with value <b>2.2.1</b>
|
||||||
|
* <p>
|
||||||
|
* If the version is a rich version and cannot be represented as a
|
||||||
|
* single version string, an empty string is returned.
|
||||||
|
* <p>
|
||||||
|
* This version was declared in catalog libs.versions.toml
|
||||||
|
*/
|
||||||
|
public Provider<String> getConstraintlayout() { return getVersion("androidx.constraintlayout"); }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Version alias <b>androidx.core</b> with value <b>1.16.0</b>
|
||||||
|
* <p>
|
||||||
|
* If the version is a rich version and cannot be represented as a
|
||||||
|
* single version string, an empty string is returned.
|
||||||
|
* <p>
|
||||||
|
* This version was declared in catalog libs.versions.toml
|
||||||
|
*/
|
||||||
|
public Provider<String> getCore() { return getVersion("androidx.core"); }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Version alias <b>androidx.espresso</b> with value <b>3.6.1</b>
|
||||||
|
* <p>
|
||||||
|
* If the version is a rich version and cannot be represented as a
|
||||||
|
* single version string, an empty string is returned.
|
||||||
|
* <p>
|
||||||
|
* This version was declared in catalog libs.versions.toml
|
||||||
|
*/
|
||||||
|
public Provider<String> getEspresso() { return getVersion("androidx.espresso"); }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Version alias <b>androidx.lifecycle</b> with value <b>2.9.1</b>
|
||||||
|
* <p>
|
||||||
|
* If the version is a rich version and cannot be represented as a
|
||||||
|
* single version string, an empty string is returned.
|
||||||
|
* <p>
|
||||||
|
* This version was declared in catalog libs.versions.toml
|
||||||
|
*/
|
||||||
|
public Provider<String> getLifecycle() { return getVersion("androidx.lifecycle"); }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Version alias <b>androidx.testExt</b> with value <b>1.2.1</b>
|
||||||
|
* <p>
|
||||||
|
* If the version is a rich version and cannot be represented as a
|
||||||
|
* single version string, an empty string is returned.
|
||||||
|
* <p>
|
||||||
|
* This version was declared in catalog libs.versions.toml
|
||||||
|
*/
|
||||||
|
public Provider<String> getTestExt() { return getVersion("androidx.testExt"); }
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public static class KotlinxVersionAccessors extends VersionFactory {
|
||||||
|
|
||||||
|
public KotlinxVersionAccessors(ProviderFactory providers, DefaultVersionCatalog config) { super(providers, config); }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Version alias <b>kotlinx.coroutines</b> with value <b>1.10.2</b>
|
||||||
|
* <p>
|
||||||
|
* If the version is a rich version and cannot be represented as a
|
||||||
|
* single version string, an empty string is returned.
|
||||||
|
* <p>
|
||||||
|
* This version was declared in catalog libs.versions.toml
|
||||||
|
*/
|
||||||
|
public Provider<String> getCoroutines() { return getVersion("kotlinx.coroutines"); }
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public static class BundleAccessors extends BundleFactory {
|
||||||
|
|
||||||
|
public BundleAccessors(ObjectFactory objects, ProviderFactory providers, DefaultVersionCatalog config, ImmutableAttributesFactory attributesFactory, CapabilityNotationParser capabilityNotationParser) { super(objects, providers, config, attributesFactory, capabilityNotationParser); }
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public static class PluginAccessors extends PluginFactory {
|
||||||
|
|
||||||
|
public PluginAccessors(ProviderFactory providers, DefaultVersionCatalog config) { super(providers, config); }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Plugin provider for <b>androidApplication</b> with plugin id <b>com.android.application</b> and
|
||||||
|
* with version reference <b>agp</b>
|
||||||
|
* <p>
|
||||||
|
* This plugin was declared in catalog libs.versions.toml
|
||||||
|
*/
|
||||||
|
public Provider<PluginDependency> getAndroidApplication() { return createPlugin("androidApplication"); }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Plugin provider for <b>androidLibrary</b> with plugin id <b>com.android.library</b> and
|
||||||
|
* with version reference <b>agp</b>
|
||||||
|
* <p>
|
||||||
|
* This plugin was declared in catalog libs.versions.toml
|
||||||
|
*/
|
||||||
|
public Provider<PluginDependency> getAndroidLibrary() { return createPlugin("androidLibrary"); }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Plugin provider for <b>composeCompiler</b> with plugin id <b>org.jetbrains.kotlin.plugin.compose</b> and
|
||||||
|
* with version reference <b>kotlin</b>
|
||||||
|
* <p>
|
||||||
|
* This plugin was declared in catalog libs.versions.toml
|
||||||
|
*/
|
||||||
|
public Provider<PluginDependency> getComposeCompiler() { return createPlugin("composeCompiler"); }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Plugin provider for <b>composeHotReload</b> with plugin id <b>org.jetbrains.compose.hot-reload</b> and
|
||||||
|
* with version reference <b>composeHotReload</b>
|
||||||
|
* <p>
|
||||||
|
* This plugin was declared in catalog libs.versions.toml
|
||||||
|
*/
|
||||||
|
public Provider<PluginDependency> getComposeHotReload() { return createPlugin("composeHotReload"); }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Plugin provider for <b>composeMultiplatform</b> with plugin id <b>org.jetbrains.compose</b> and
|
||||||
|
* with version reference <b>composeMultiplatform</b>
|
||||||
|
* <p>
|
||||||
|
* This plugin was declared in catalog libs.versions.toml
|
||||||
|
*/
|
||||||
|
public Provider<PluginDependency> getComposeMultiplatform() { return createPlugin("composeMultiplatform"); }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Plugin provider for <b>kotlinMultiplatform</b> with plugin id <b>org.jetbrains.kotlin.multiplatform</b> and
|
||||||
|
* with version reference <b>kotlin</b>
|
||||||
|
* <p>
|
||||||
|
* This plugin was declared in catalog libs.versions.toml
|
||||||
|
*/
|
||||||
|
public Provider<PluginDependency> getKotlinMultiplatform() { return createPlugin("kotlinMultiplatform"); }
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@ -0,0 +1,675 @@
|
|||||||
|
package org.gradle.accessors.dm;
|
||||||
|
|
||||||
|
import org.gradle.api.NonNullApi;
|
||||||
|
import org.gradle.api.artifacts.MinimalExternalModuleDependency;
|
||||||
|
import org.gradle.plugin.use.PluginDependency;
|
||||||
|
import org.gradle.api.artifacts.ExternalModuleDependencyBundle;
|
||||||
|
import org.gradle.api.artifacts.MutableVersionConstraint;
|
||||||
|
import org.gradle.api.provider.Provider;
|
||||||
|
import org.gradle.api.model.ObjectFactory;
|
||||||
|
import org.gradle.api.provider.ProviderFactory;
|
||||||
|
import org.gradle.api.internal.catalog.AbstractExternalDependencyFactory;
|
||||||
|
import org.gradle.api.internal.catalog.DefaultVersionCatalog;
|
||||||
|
import java.util.Map;
|
||||||
|
import org.gradle.api.internal.attributes.ImmutableAttributesFactory;
|
||||||
|
import org.gradle.api.internal.artifacts.dsl.CapabilityNotationParser;
|
||||||
|
import javax.inject.Inject;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A catalog of dependencies accessible via the {@code libs} extension.
|
||||||
|
*/
|
||||||
|
@NonNullApi
|
||||||
|
public class LibrariesForLibsInPluginsBlock extends AbstractExternalDependencyFactory {
|
||||||
|
|
||||||
|
private final AbstractExternalDependencyFactory owner = this;
|
||||||
|
private final AndroidxLibraryAccessors laccForAndroidxLibraryAccessors = new AndroidxLibraryAccessors(owner);
|
||||||
|
private final KotlinLibraryAccessors laccForKotlinLibraryAccessors = new KotlinLibraryAccessors(owner);
|
||||||
|
private final KotlinxLibraryAccessors laccForKotlinxLibraryAccessors = new KotlinxLibraryAccessors(owner);
|
||||||
|
private final VersionAccessors vaccForVersionAccessors = new VersionAccessors(providers, config);
|
||||||
|
private final BundleAccessors baccForBundleAccessors = new BundleAccessors(objects, providers, config, attributesFactory, capabilityNotationParser);
|
||||||
|
private final PluginAccessors paccForPluginAccessors = new PluginAccessors(providers, config);
|
||||||
|
|
||||||
|
@Inject
|
||||||
|
public LibrariesForLibsInPluginsBlock(DefaultVersionCatalog config, ProviderFactory providers, ObjectFactory objects, ImmutableAttributesFactory attributesFactory, CapabilityNotationParser capabilityNotationParser) {
|
||||||
|
super(config, providers, objects, attributesFactory, capabilityNotationParser);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Dependency provider for <b>junit</b> with <b>junit:junit</b> coordinates and
|
||||||
|
* with version reference <b>junit</b>
|
||||||
|
* <p>
|
||||||
|
* This dependency was declared in catalog libs.versions.toml
|
||||||
|
*
|
||||||
|
* @deprecated Will be removed in Gradle 9.0.
|
||||||
|
*/
|
||||||
|
@Deprecated
|
||||||
|
public Provider<MinimalExternalModuleDependency> getJunit() {
|
||||||
|
org.gradle.internal.deprecation.DeprecationLogger.deprecateBehaviour("Accessing libraries or bundles from version catalogs in the plugins block.").withAdvice("Only use versions or plugins from catalogs in the plugins block.").willBeRemovedInGradle9().withUpgradeGuideSection(8, "kotlin_dsl_deprecated_catalogs_plugins_block").nagUser();
|
||||||
|
return create("junit");
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Group of libraries at <b>androidx</b>
|
||||||
|
*
|
||||||
|
* @deprecated Will be removed in Gradle 9.0.
|
||||||
|
*/
|
||||||
|
@Deprecated
|
||||||
|
public AndroidxLibraryAccessors getAndroidx() {
|
||||||
|
org.gradle.internal.deprecation.DeprecationLogger.deprecateBehaviour("Accessing libraries or bundles from version catalogs in the plugins block.").withAdvice("Only use versions or plugins from catalogs in the plugins block.").willBeRemovedInGradle9().withUpgradeGuideSection(8, "kotlin_dsl_deprecated_catalogs_plugins_block").nagUser();
|
||||||
|
return laccForAndroidxLibraryAccessors;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Group of libraries at <b>kotlin</b>
|
||||||
|
*
|
||||||
|
* @deprecated Will be removed in Gradle 9.0.
|
||||||
|
*/
|
||||||
|
@Deprecated
|
||||||
|
public KotlinLibraryAccessors getKotlin() {
|
||||||
|
org.gradle.internal.deprecation.DeprecationLogger.deprecateBehaviour("Accessing libraries or bundles from version catalogs in the plugins block.").withAdvice("Only use versions or plugins from catalogs in the plugins block.").willBeRemovedInGradle9().withUpgradeGuideSection(8, "kotlin_dsl_deprecated_catalogs_plugins_block").nagUser();
|
||||||
|
return laccForKotlinLibraryAccessors;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Group of libraries at <b>kotlinx</b>
|
||||||
|
*
|
||||||
|
* @deprecated Will be removed in Gradle 9.0.
|
||||||
|
*/
|
||||||
|
@Deprecated
|
||||||
|
public KotlinxLibraryAccessors getKotlinx() {
|
||||||
|
org.gradle.internal.deprecation.DeprecationLogger.deprecateBehaviour("Accessing libraries or bundles from version catalogs in the plugins block.").withAdvice("Only use versions or plugins from catalogs in the plugins block.").willBeRemovedInGradle9().withUpgradeGuideSection(8, "kotlin_dsl_deprecated_catalogs_plugins_block").nagUser();
|
||||||
|
return laccForKotlinxLibraryAccessors;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Group of versions at <b>versions</b>
|
||||||
|
*/
|
||||||
|
public VersionAccessors getVersions() {
|
||||||
|
return vaccForVersionAccessors;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Group of bundles at <b>bundles</b>
|
||||||
|
*
|
||||||
|
* @deprecated Will be removed in Gradle 9.0.
|
||||||
|
*/
|
||||||
|
@Deprecated
|
||||||
|
public BundleAccessors getBundles() {
|
||||||
|
org.gradle.internal.deprecation.DeprecationLogger.deprecateBehaviour("Accessing libraries or bundles from version catalogs in the plugins block.").withAdvice("Only use versions or plugins from catalogs in the plugins block.").willBeRemovedInGradle9().withUpgradeGuideSection(8, "kotlin_dsl_deprecated_catalogs_plugins_block").nagUser();
|
||||||
|
return baccForBundleAccessors;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Group of plugins at <b>plugins</b>
|
||||||
|
*/
|
||||||
|
public PluginAccessors getPlugins() {
|
||||||
|
return paccForPluginAccessors;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @deprecated Will be removed in Gradle 9.0.
|
||||||
|
*/
|
||||||
|
@Deprecated
|
||||||
|
public static class AndroidxLibraryAccessors extends SubDependencyFactory {
|
||||||
|
private final AndroidxActivityLibraryAccessors laccForAndroidxActivityLibraryAccessors = new AndroidxActivityLibraryAccessors(owner);
|
||||||
|
private final AndroidxCoreLibraryAccessors laccForAndroidxCoreLibraryAccessors = new AndroidxCoreLibraryAccessors(owner);
|
||||||
|
private final AndroidxEspressoLibraryAccessors laccForAndroidxEspressoLibraryAccessors = new AndroidxEspressoLibraryAccessors(owner);
|
||||||
|
private final AndroidxLifecycleLibraryAccessors laccForAndroidxLifecycleLibraryAccessors = new AndroidxLifecycleLibraryAccessors(owner);
|
||||||
|
private final AndroidxTestExtLibraryAccessors laccForAndroidxTestExtLibraryAccessors = new AndroidxTestExtLibraryAccessors(owner);
|
||||||
|
|
||||||
|
public AndroidxLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Dependency provider for <b>appcompat</b> with <b>androidx.appcompat:appcompat</b> coordinates and
|
||||||
|
* with version reference <b>androidx.appcompat</b>
|
||||||
|
* <p>
|
||||||
|
* This dependency was declared in catalog libs.versions.toml
|
||||||
|
*
|
||||||
|
* @deprecated Will be removed in Gradle 9.0.
|
||||||
|
*/
|
||||||
|
@Deprecated
|
||||||
|
public Provider<MinimalExternalModuleDependency> getAppcompat() {
|
||||||
|
org.gradle.internal.deprecation.DeprecationLogger.deprecateBehaviour("Accessing libraries or bundles from version catalogs in the plugins block.").withAdvice("Only use versions or plugins from catalogs in the plugins block.").willBeRemovedInGradle9().withUpgradeGuideSection(8, "kotlin_dsl_deprecated_catalogs_plugins_block").nagUser();
|
||||||
|
return create("androidx.appcompat");
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Dependency provider for <b>constraintlayout</b> with <b>androidx.constraintlayout:constraintlayout</b> coordinates and
|
||||||
|
* with version reference <b>androidx.constraintlayout</b>
|
||||||
|
* <p>
|
||||||
|
* This dependency was declared in catalog libs.versions.toml
|
||||||
|
*
|
||||||
|
* @deprecated Will be removed in Gradle 9.0.
|
||||||
|
*/
|
||||||
|
@Deprecated
|
||||||
|
public Provider<MinimalExternalModuleDependency> getConstraintlayout() {
|
||||||
|
org.gradle.internal.deprecation.DeprecationLogger.deprecateBehaviour("Accessing libraries or bundles from version catalogs in the plugins block.").withAdvice("Only use versions or plugins from catalogs in the plugins block.").willBeRemovedInGradle9().withUpgradeGuideSection(8, "kotlin_dsl_deprecated_catalogs_plugins_block").nagUser();
|
||||||
|
return create("androidx.constraintlayout");
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Group of libraries at <b>androidx.activity</b>
|
||||||
|
*
|
||||||
|
* @deprecated Will be removed in Gradle 9.0.
|
||||||
|
*/
|
||||||
|
@Deprecated
|
||||||
|
public AndroidxActivityLibraryAccessors getActivity() {
|
||||||
|
org.gradle.internal.deprecation.DeprecationLogger.deprecateBehaviour("Accessing libraries or bundles from version catalogs in the plugins block.").withAdvice("Only use versions or plugins from catalogs in the plugins block.").willBeRemovedInGradle9().withUpgradeGuideSection(8, "kotlin_dsl_deprecated_catalogs_plugins_block").nagUser();
|
||||||
|
return laccForAndroidxActivityLibraryAccessors;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Group of libraries at <b>androidx.core</b>
|
||||||
|
*
|
||||||
|
* @deprecated Will be removed in Gradle 9.0.
|
||||||
|
*/
|
||||||
|
@Deprecated
|
||||||
|
public AndroidxCoreLibraryAccessors getCore() {
|
||||||
|
org.gradle.internal.deprecation.DeprecationLogger.deprecateBehaviour("Accessing libraries or bundles from version catalogs in the plugins block.").withAdvice("Only use versions or plugins from catalogs in the plugins block.").willBeRemovedInGradle9().withUpgradeGuideSection(8, "kotlin_dsl_deprecated_catalogs_plugins_block").nagUser();
|
||||||
|
return laccForAndroidxCoreLibraryAccessors;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Group of libraries at <b>androidx.espresso</b>
|
||||||
|
*
|
||||||
|
* @deprecated Will be removed in Gradle 9.0.
|
||||||
|
*/
|
||||||
|
@Deprecated
|
||||||
|
public AndroidxEspressoLibraryAccessors getEspresso() {
|
||||||
|
org.gradle.internal.deprecation.DeprecationLogger.deprecateBehaviour("Accessing libraries or bundles from version catalogs in the plugins block.").withAdvice("Only use versions or plugins from catalogs in the plugins block.").willBeRemovedInGradle9().withUpgradeGuideSection(8, "kotlin_dsl_deprecated_catalogs_plugins_block").nagUser();
|
||||||
|
return laccForAndroidxEspressoLibraryAccessors;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Group of libraries at <b>androidx.lifecycle</b>
|
||||||
|
*
|
||||||
|
* @deprecated Will be removed in Gradle 9.0.
|
||||||
|
*/
|
||||||
|
@Deprecated
|
||||||
|
public AndroidxLifecycleLibraryAccessors getLifecycle() {
|
||||||
|
org.gradle.internal.deprecation.DeprecationLogger.deprecateBehaviour("Accessing libraries or bundles from version catalogs in the plugins block.").withAdvice("Only use versions or plugins from catalogs in the plugins block.").willBeRemovedInGradle9().withUpgradeGuideSection(8, "kotlin_dsl_deprecated_catalogs_plugins_block").nagUser();
|
||||||
|
return laccForAndroidxLifecycleLibraryAccessors;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Group of libraries at <b>androidx.testExt</b>
|
||||||
|
*
|
||||||
|
* @deprecated Will be removed in Gradle 9.0.
|
||||||
|
*/
|
||||||
|
@Deprecated
|
||||||
|
public AndroidxTestExtLibraryAccessors getTestExt() {
|
||||||
|
org.gradle.internal.deprecation.DeprecationLogger.deprecateBehaviour("Accessing libraries or bundles from version catalogs in the plugins block.").withAdvice("Only use versions or plugins from catalogs in the plugins block.").willBeRemovedInGradle9().withUpgradeGuideSection(8, "kotlin_dsl_deprecated_catalogs_plugins_block").nagUser();
|
||||||
|
return laccForAndroidxTestExtLibraryAccessors;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @deprecated Will be removed in Gradle 9.0.
|
||||||
|
*/
|
||||||
|
@Deprecated
|
||||||
|
public static class AndroidxActivityLibraryAccessors extends SubDependencyFactory {
|
||||||
|
|
||||||
|
public AndroidxActivityLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Dependency provider for <b>compose</b> with <b>androidx.activity:activity-compose</b> coordinates and
|
||||||
|
* with version reference <b>androidx.activity</b>
|
||||||
|
* <p>
|
||||||
|
* This dependency was declared in catalog libs.versions.toml
|
||||||
|
*
|
||||||
|
* @deprecated Will be removed in Gradle 9.0.
|
||||||
|
*/
|
||||||
|
@Deprecated
|
||||||
|
public Provider<MinimalExternalModuleDependency> getCompose() {
|
||||||
|
org.gradle.internal.deprecation.DeprecationLogger.deprecateBehaviour("Accessing libraries or bundles from version catalogs in the plugins block.").withAdvice("Only use versions or plugins from catalogs in the plugins block.").willBeRemovedInGradle9().withUpgradeGuideSection(8, "kotlin_dsl_deprecated_catalogs_plugins_block").nagUser();
|
||||||
|
return create("androidx.activity.compose");
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @deprecated Will be removed in Gradle 9.0.
|
||||||
|
*/
|
||||||
|
@Deprecated
|
||||||
|
public static class AndroidxCoreLibraryAccessors extends SubDependencyFactory {
|
||||||
|
|
||||||
|
public AndroidxCoreLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Dependency provider for <b>ktx</b> with <b>androidx.core:core-ktx</b> coordinates and
|
||||||
|
* with version reference <b>androidx.core</b>
|
||||||
|
* <p>
|
||||||
|
* This dependency was declared in catalog libs.versions.toml
|
||||||
|
*
|
||||||
|
* @deprecated Will be removed in Gradle 9.0.
|
||||||
|
*/
|
||||||
|
@Deprecated
|
||||||
|
public Provider<MinimalExternalModuleDependency> getKtx() {
|
||||||
|
org.gradle.internal.deprecation.DeprecationLogger.deprecateBehaviour("Accessing libraries or bundles from version catalogs in the plugins block.").withAdvice("Only use versions or plugins from catalogs in the plugins block.").willBeRemovedInGradle9().withUpgradeGuideSection(8, "kotlin_dsl_deprecated_catalogs_plugins_block").nagUser();
|
||||||
|
return create("androidx.core.ktx");
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @deprecated Will be removed in Gradle 9.0.
|
||||||
|
*/
|
||||||
|
@Deprecated
|
||||||
|
public static class AndroidxEspressoLibraryAccessors extends SubDependencyFactory {
|
||||||
|
|
||||||
|
public AndroidxEspressoLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Dependency provider for <b>core</b> with <b>androidx.test.espresso:espresso-core</b> coordinates and
|
||||||
|
* with version reference <b>androidx.espresso</b>
|
||||||
|
* <p>
|
||||||
|
* This dependency was declared in catalog libs.versions.toml
|
||||||
|
*
|
||||||
|
* @deprecated Will be removed in Gradle 9.0.
|
||||||
|
*/
|
||||||
|
@Deprecated
|
||||||
|
public Provider<MinimalExternalModuleDependency> getCore() {
|
||||||
|
org.gradle.internal.deprecation.DeprecationLogger.deprecateBehaviour("Accessing libraries or bundles from version catalogs in the plugins block.").withAdvice("Only use versions or plugins from catalogs in the plugins block.").willBeRemovedInGradle9().withUpgradeGuideSection(8, "kotlin_dsl_deprecated_catalogs_plugins_block").nagUser();
|
||||||
|
return create("androidx.espresso.core");
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @deprecated Will be removed in Gradle 9.0.
|
||||||
|
*/
|
||||||
|
@Deprecated
|
||||||
|
public static class AndroidxLifecycleLibraryAccessors extends SubDependencyFactory {
|
||||||
|
|
||||||
|
public AndroidxLifecycleLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Dependency provider for <b>runtimeCompose</b> with <b>org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose</b> coordinates and
|
||||||
|
* with version reference <b>androidx.lifecycle</b>
|
||||||
|
* <p>
|
||||||
|
* This dependency was declared in catalog libs.versions.toml
|
||||||
|
*
|
||||||
|
* @deprecated Will be removed in Gradle 9.0.
|
||||||
|
*/
|
||||||
|
@Deprecated
|
||||||
|
public Provider<MinimalExternalModuleDependency> getRuntimeCompose() {
|
||||||
|
org.gradle.internal.deprecation.DeprecationLogger.deprecateBehaviour("Accessing libraries or bundles from version catalogs in the plugins block.").withAdvice("Only use versions or plugins from catalogs in the plugins block.").willBeRemovedInGradle9().withUpgradeGuideSection(8, "kotlin_dsl_deprecated_catalogs_plugins_block").nagUser();
|
||||||
|
return create("androidx.lifecycle.runtimeCompose");
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Dependency provider for <b>viewmodel</b> with <b>org.jetbrains.androidx.lifecycle:lifecycle-viewmodel</b> coordinates and
|
||||||
|
* with version reference <b>androidx.lifecycle</b>
|
||||||
|
* <p>
|
||||||
|
* This dependency was declared in catalog libs.versions.toml
|
||||||
|
*
|
||||||
|
* @deprecated Will be removed in Gradle 9.0.
|
||||||
|
*/
|
||||||
|
@Deprecated
|
||||||
|
public Provider<MinimalExternalModuleDependency> getViewmodel() {
|
||||||
|
org.gradle.internal.deprecation.DeprecationLogger.deprecateBehaviour("Accessing libraries or bundles from version catalogs in the plugins block.").withAdvice("Only use versions or plugins from catalogs in the plugins block.").willBeRemovedInGradle9().withUpgradeGuideSection(8, "kotlin_dsl_deprecated_catalogs_plugins_block").nagUser();
|
||||||
|
return create("androidx.lifecycle.viewmodel");
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @deprecated Will be removed in Gradle 9.0.
|
||||||
|
*/
|
||||||
|
@Deprecated
|
||||||
|
public static class AndroidxTestExtLibraryAccessors extends SubDependencyFactory {
|
||||||
|
|
||||||
|
public AndroidxTestExtLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Dependency provider for <b>junit</b> with <b>androidx.test.ext:junit</b> coordinates and
|
||||||
|
* with version reference <b>androidx.testExt</b>
|
||||||
|
* <p>
|
||||||
|
* This dependency was declared in catalog libs.versions.toml
|
||||||
|
*
|
||||||
|
* @deprecated Will be removed in Gradle 9.0.
|
||||||
|
*/
|
||||||
|
@Deprecated
|
||||||
|
public Provider<MinimalExternalModuleDependency> getJunit() {
|
||||||
|
org.gradle.internal.deprecation.DeprecationLogger.deprecateBehaviour("Accessing libraries or bundles from version catalogs in the plugins block.").withAdvice("Only use versions or plugins from catalogs in the plugins block.").willBeRemovedInGradle9().withUpgradeGuideSection(8, "kotlin_dsl_deprecated_catalogs_plugins_block").nagUser();
|
||||||
|
return create("androidx.testExt.junit");
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @deprecated Will be removed in Gradle 9.0.
|
||||||
|
*/
|
||||||
|
@Deprecated
|
||||||
|
public static class KotlinLibraryAccessors extends SubDependencyFactory {
|
||||||
|
|
||||||
|
public KotlinLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Dependency provider for <b>test</b> with <b>org.jetbrains.kotlin:kotlin-test</b> coordinates and
|
||||||
|
* with version reference <b>kotlin</b>
|
||||||
|
* <p>
|
||||||
|
* This dependency was declared in catalog libs.versions.toml
|
||||||
|
*
|
||||||
|
* @deprecated Will be removed in Gradle 9.0.
|
||||||
|
*/
|
||||||
|
@Deprecated
|
||||||
|
public Provider<MinimalExternalModuleDependency> getTest() {
|
||||||
|
org.gradle.internal.deprecation.DeprecationLogger.deprecateBehaviour("Accessing libraries or bundles from version catalogs in the plugins block.").withAdvice("Only use versions or plugins from catalogs in the plugins block.").willBeRemovedInGradle9().withUpgradeGuideSection(8, "kotlin_dsl_deprecated_catalogs_plugins_block").nagUser();
|
||||||
|
return create("kotlin.test");
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Dependency provider for <b>testJunit</b> with <b>org.jetbrains.kotlin:kotlin-test-junit</b> coordinates and
|
||||||
|
* with version reference <b>kotlin</b>
|
||||||
|
* <p>
|
||||||
|
* This dependency was declared in catalog libs.versions.toml
|
||||||
|
*
|
||||||
|
* @deprecated Will be removed in Gradle 9.0.
|
||||||
|
*/
|
||||||
|
@Deprecated
|
||||||
|
public Provider<MinimalExternalModuleDependency> getTestJunit() {
|
||||||
|
org.gradle.internal.deprecation.DeprecationLogger.deprecateBehaviour("Accessing libraries or bundles from version catalogs in the plugins block.").withAdvice("Only use versions or plugins from catalogs in the plugins block.").willBeRemovedInGradle9().withUpgradeGuideSection(8, "kotlin_dsl_deprecated_catalogs_plugins_block").nagUser();
|
||||||
|
return create("kotlin.testJunit");
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @deprecated Will be removed in Gradle 9.0.
|
||||||
|
*/
|
||||||
|
@Deprecated
|
||||||
|
public static class KotlinxLibraryAccessors extends SubDependencyFactory {
|
||||||
|
|
||||||
|
public KotlinxLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Dependency provider for <b>coroutinesSwing</b> with <b>org.jetbrains.kotlinx:kotlinx-coroutines-swing</b> coordinates and
|
||||||
|
* with version reference <b>kotlinx.coroutines</b>
|
||||||
|
* <p>
|
||||||
|
* This dependency was declared in catalog libs.versions.toml
|
||||||
|
*
|
||||||
|
* @deprecated Will be removed in Gradle 9.0.
|
||||||
|
*/
|
||||||
|
@Deprecated
|
||||||
|
public Provider<MinimalExternalModuleDependency> getCoroutinesSwing() {
|
||||||
|
org.gradle.internal.deprecation.DeprecationLogger.deprecateBehaviour("Accessing libraries or bundles from version catalogs in the plugins block.").withAdvice("Only use versions or plugins from catalogs in the plugins block.").willBeRemovedInGradle9().withUpgradeGuideSection(8, "kotlin_dsl_deprecated_catalogs_plugins_block").nagUser();
|
||||||
|
return create("kotlinx.coroutinesSwing");
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public static class VersionAccessors extends VersionFactory {
|
||||||
|
|
||||||
|
private final AndroidVersionAccessors vaccForAndroidVersionAccessors = new AndroidVersionAccessors(providers, config);
|
||||||
|
private final AndroidxVersionAccessors vaccForAndroidxVersionAccessors = new AndroidxVersionAccessors(providers, config);
|
||||||
|
private final KotlinxVersionAccessors vaccForKotlinxVersionAccessors = new KotlinxVersionAccessors(providers, config);
|
||||||
|
public VersionAccessors(ProviderFactory providers, DefaultVersionCatalog config) { super(providers, config); }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Version alias <b>agp</b> with value <b>8.7.3</b>
|
||||||
|
* <p>
|
||||||
|
* If the version is a rich version and cannot be represented as a
|
||||||
|
* single version string, an empty string is returned.
|
||||||
|
* <p>
|
||||||
|
* This version was declared in catalog libs.versions.toml
|
||||||
|
*/
|
||||||
|
public Provider<String> getAgp() { return getVersion("agp"); }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Version alias <b>composeHotReload</b> with value <b>1.0.0-alpha11</b>
|
||||||
|
* <p>
|
||||||
|
* If the version is a rich version and cannot be represented as a
|
||||||
|
* single version string, an empty string is returned.
|
||||||
|
* <p>
|
||||||
|
* This version was declared in catalog libs.versions.toml
|
||||||
|
*/
|
||||||
|
public Provider<String> getComposeHotReload() { return getVersion("composeHotReload"); }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Version alias <b>composeMultiplatform</b> with value <b>1.8.2</b>
|
||||||
|
* <p>
|
||||||
|
* If the version is a rich version and cannot be represented as a
|
||||||
|
* single version string, an empty string is returned.
|
||||||
|
* <p>
|
||||||
|
* This version was declared in catalog libs.versions.toml
|
||||||
|
*/
|
||||||
|
public Provider<String> getComposeMultiplatform() { return getVersion("composeMultiplatform"); }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Version alias <b>junit</b> with value <b>4.13.2</b>
|
||||||
|
* <p>
|
||||||
|
* If the version is a rich version and cannot be represented as a
|
||||||
|
* single version string, an empty string is returned.
|
||||||
|
* <p>
|
||||||
|
* This version was declared in catalog libs.versions.toml
|
||||||
|
*/
|
||||||
|
public Provider<String> getJunit() { return getVersion("junit"); }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Version alias <b>kotlin</b> with value <b>2.2.0</b>
|
||||||
|
* <p>
|
||||||
|
* If the version is a rich version and cannot be represented as a
|
||||||
|
* single version string, an empty string is returned.
|
||||||
|
* <p>
|
||||||
|
* This version was declared in catalog libs.versions.toml
|
||||||
|
*/
|
||||||
|
public Provider<String> getKotlin() { return getVersion("kotlin"); }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Group of versions at <b>versions.android</b>
|
||||||
|
*/
|
||||||
|
public AndroidVersionAccessors getAndroid() {
|
||||||
|
return vaccForAndroidVersionAccessors;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Group of versions at <b>versions.androidx</b>
|
||||||
|
*/
|
||||||
|
public AndroidxVersionAccessors getAndroidx() {
|
||||||
|
return vaccForAndroidxVersionAccessors;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Group of versions at <b>versions.kotlinx</b>
|
||||||
|
*/
|
||||||
|
public KotlinxVersionAccessors getKotlinx() {
|
||||||
|
return vaccForKotlinxVersionAccessors;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public static class AndroidVersionAccessors extends VersionFactory {
|
||||||
|
|
||||||
|
public AndroidVersionAccessors(ProviderFactory providers, DefaultVersionCatalog config) { super(providers, config); }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Version alias <b>android.compileSdk</b> with value <b>35</b>
|
||||||
|
* <p>
|
||||||
|
* If the version is a rich version and cannot be represented as a
|
||||||
|
* single version string, an empty string is returned.
|
||||||
|
* <p>
|
||||||
|
* This version was declared in catalog libs.versions.toml
|
||||||
|
*/
|
||||||
|
public Provider<String> getCompileSdk() { return getVersion("android.compileSdk"); }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Version alias <b>android.minSdk</b> with value <b>24</b>
|
||||||
|
* <p>
|
||||||
|
* If the version is a rich version and cannot be represented as a
|
||||||
|
* single version string, an empty string is returned.
|
||||||
|
* <p>
|
||||||
|
* This version was declared in catalog libs.versions.toml
|
||||||
|
*/
|
||||||
|
public Provider<String> getMinSdk() { return getVersion("android.minSdk"); }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Version alias <b>android.targetSdk</b> with value <b>35</b>
|
||||||
|
* <p>
|
||||||
|
* If the version is a rich version and cannot be represented as a
|
||||||
|
* single version string, an empty string is returned.
|
||||||
|
* <p>
|
||||||
|
* This version was declared in catalog libs.versions.toml
|
||||||
|
*/
|
||||||
|
public Provider<String> getTargetSdk() { return getVersion("android.targetSdk"); }
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public static class AndroidxVersionAccessors extends VersionFactory {
|
||||||
|
|
||||||
|
public AndroidxVersionAccessors(ProviderFactory providers, DefaultVersionCatalog config) { super(providers, config); }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Version alias <b>androidx.activity</b> with value <b>1.10.1</b>
|
||||||
|
* <p>
|
||||||
|
* If the version is a rich version and cannot be represented as a
|
||||||
|
* single version string, an empty string is returned.
|
||||||
|
* <p>
|
||||||
|
* This version was declared in catalog libs.versions.toml
|
||||||
|
*/
|
||||||
|
public Provider<String> getActivity() { return getVersion("androidx.activity"); }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Version alias <b>androidx.appcompat</b> with value <b>1.7.1</b>
|
||||||
|
* <p>
|
||||||
|
* If the version is a rich version and cannot be represented as a
|
||||||
|
* single version string, an empty string is returned.
|
||||||
|
* <p>
|
||||||
|
* This version was declared in catalog libs.versions.toml
|
||||||
|
*/
|
||||||
|
public Provider<String> getAppcompat() { return getVersion("androidx.appcompat"); }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Version alias <b>androidx.constraintlayout</b> with value <b>2.2.1</b>
|
||||||
|
* <p>
|
||||||
|
* If the version is a rich version and cannot be represented as a
|
||||||
|
* single version string, an empty string is returned.
|
||||||
|
* <p>
|
||||||
|
* This version was declared in catalog libs.versions.toml
|
||||||
|
*/
|
||||||
|
public Provider<String> getConstraintlayout() { return getVersion("androidx.constraintlayout"); }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Version alias <b>androidx.core</b> with value <b>1.16.0</b>
|
||||||
|
* <p>
|
||||||
|
* If the version is a rich version and cannot be represented as a
|
||||||
|
* single version string, an empty string is returned.
|
||||||
|
* <p>
|
||||||
|
* This version was declared in catalog libs.versions.toml
|
||||||
|
*/
|
||||||
|
public Provider<String> getCore() { return getVersion("androidx.core"); }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Version alias <b>androidx.espresso</b> with value <b>3.6.1</b>
|
||||||
|
* <p>
|
||||||
|
* If the version is a rich version and cannot be represented as a
|
||||||
|
* single version string, an empty string is returned.
|
||||||
|
* <p>
|
||||||
|
* This version was declared in catalog libs.versions.toml
|
||||||
|
*/
|
||||||
|
public Provider<String> getEspresso() { return getVersion("androidx.espresso"); }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Version alias <b>androidx.lifecycle</b> with value <b>2.9.1</b>
|
||||||
|
* <p>
|
||||||
|
* If the version is a rich version and cannot be represented as a
|
||||||
|
* single version string, an empty string is returned.
|
||||||
|
* <p>
|
||||||
|
* This version was declared in catalog libs.versions.toml
|
||||||
|
*/
|
||||||
|
public Provider<String> getLifecycle() { return getVersion("androidx.lifecycle"); }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Version alias <b>androidx.testExt</b> with value <b>1.2.1</b>
|
||||||
|
* <p>
|
||||||
|
* If the version is a rich version and cannot be represented as a
|
||||||
|
* single version string, an empty string is returned.
|
||||||
|
* <p>
|
||||||
|
* This version was declared in catalog libs.versions.toml
|
||||||
|
*/
|
||||||
|
public Provider<String> getTestExt() { return getVersion("androidx.testExt"); }
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public static class KotlinxVersionAccessors extends VersionFactory {
|
||||||
|
|
||||||
|
public KotlinxVersionAccessors(ProviderFactory providers, DefaultVersionCatalog config) { super(providers, config); }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Version alias <b>kotlinx.coroutines</b> with value <b>1.10.2</b>
|
||||||
|
* <p>
|
||||||
|
* If the version is a rich version and cannot be represented as a
|
||||||
|
* single version string, an empty string is returned.
|
||||||
|
* <p>
|
||||||
|
* This version was declared in catalog libs.versions.toml
|
||||||
|
*/
|
||||||
|
public Provider<String> getCoroutines() { return getVersion("kotlinx.coroutines"); }
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @deprecated Will be removed in Gradle 9.0.
|
||||||
|
*/
|
||||||
|
@Deprecated
|
||||||
|
public static class BundleAccessors extends BundleFactory {
|
||||||
|
|
||||||
|
public BundleAccessors(ObjectFactory objects, ProviderFactory providers, DefaultVersionCatalog config, ImmutableAttributesFactory attributesFactory, CapabilityNotationParser capabilityNotationParser) { super(objects, providers, config, attributesFactory, capabilityNotationParser); }
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public static class PluginAccessors extends PluginFactory {
|
||||||
|
|
||||||
|
public PluginAccessors(ProviderFactory providers, DefaultVersionCatalog config) { super(providers, config); }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Plugin provider for <b>androidApplication</b> with plugin id <b>com.android.application</b> and
|
||||||
|
* with version reference <b>agp</b>
|
||||||
|
* <p>
|
||||||
|
* This plugin was declared in catalog libs.versions.toml
|
||||||
|
*/
|
||||||
|
public Provider<PluginDependency> getAndroidApplication() { return createPlugin("androidApplication"); }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Plugin provider for <b>androidLibrary</b> with plugin id <b>com.android.library</b> and
|
||||||
|
* with version reference <b>agp</b>
|
||||||
|
* <p>
|
||||||
|
* This plugin was declared in catalog libs.versions.toml
|
||||||
|
*/
|
||||||
|
public Provider<PluginDependency> getAndroidLibrary() { return createPlugin("androidLibrary"); }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Plugin provider for <b>composeCompiler</b> with plugin id <b>org.jetbrains.kotlin.plugin.compose</b> and
|
||||||
|
* with version reference <b>kotlin</b>
|
||||||
|
* <p>
|
||||||
|
* This plugin was declared in catalog libs.versions.toml
|
||||||
|
*/
|
||||||
|
public Provider<PluginDependency> getComposeCompiler() { return createPlugin("composeCompiler"); }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Plugin provider for <b>composeHotReload</b> with plugin id <b>org.jetbrains.compose.hot-reload</b> and
|
||||||
|
* with version reference <b>composeHotReload</b>
|
||||||
|
* <p>
|
||||||
|
* This plugin was declared in catalog libs.versions.toml
|
||||||
|
*/
|
||||||
|
public Provider<PluginDependency> getComposeHotReload() { return createPlugin("composeHotReload"); }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Plugin provider for <b>composeMultiplatform</b> with plugin id <b>org.jetbrains.compose</b> and
|
||||||
|
* with version reference <b>composeMultiplatform</b>
|
||||||
|
* <p>
|
||||||
|
* This plugin was declared in catalog libs.versions.toml
|
||||||
|
*/
|
||||||
|
public Provider<PluginDependency> getComposeMultiplatform() { return createPlugin("composeMultiplatform"); }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Plugin provider for <b>kotlinMultiplatform</b> with plugin id <b>org.jetbrains.kotlin.multiplatform</b> and
|
||||||
|
* with version reference <b>kotlin</b>
|
||||||
|
* <p>
|
||||||
|
* This plugin was declared in catalog libs.versions.toml
|
||||||
|
*/
|
||||||
|
public Provider<PluginDependency> getKotlinMultiplatform() { return createPlugin("kotlinMultiplatform"); }
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@ -1 +1 @@
|
|||||||
<EFBFBD>mtq2jwarfnafxi7l63qo7uu7aa<10><>_<EFBFBD>G<EFBFBD>La<4C><61>G<EFBFBD><47>_1uh<02>classesA7<41><37><EFBFBD>Bt<42>J<EFBFBD>h[;8%<25><>sourcesJ7<4A>ȤH<C8A4><48>`<60>db<64>WD
|
<EFBFBD>txf6rbfwfzfyzm2homgaxfwtxa<10><>_<EFBFBD>G<EFBFBD>La<4C><61>G<EFBFBD><47>_1u<EFBFBD><02>classesA7<41><37><EFBFBD>Bt<42>J<EFBFBD>h[;8%<25><>sourcesJ7<4A>ȤH<C8A4><48>`<60>db<64>WD
|
||||||
Binary file not shown.
Binary file not shown.
@ -1 +1 @@
|
|||||||
<EFBFBD>mtq2jwarfnafxi7l63qo7uu7aao5<6F><35><EFBFBD><EFBFBD>_i^i</<2F><>&<02>classes<06>]<0F><EFBFBD>ʶ<12>5<EFBFBD>z<EFBFBD>sources<10>g<EFBFBD><67>x<EFBFBD>}<7D>a@k<EFBFBD><EFBFBD>
|
<EFBFBD>sdqaonr34bcpvouv6acithyp3ao5<6F><35><EFBFBD><EFBFBD>_i^i</<2F><>*<02>classes<EFBFBD><EFBFBD><EFBFBD><EFBFBD>:<3A><19><><EFBFBD><EFBFBD><EFBFBD>9<EFBFBD><03><>sourcesM<>C<EFBFBD><43>$t<18>)<29><><EFBFBD><EFBFBD>
|
||||||
@ -21,7 +21,7 @@ public class RootProjectAccessor extends TypeSafeProjectDependencyFactory {
|
|||||||
/**
|
/**
|
||||||
* Creates a project dependency on the project at path ":"
|
* Creates a project dependency on the project at path ":"
|
||||||
*/
|
*/
|
||||||
public SClientProjectDependency getSClient() { return new SClientProjectDependency(getFactory(), create(":")); }
|
public SclientProjectDependency getSclient() { return new SclientProjectDependency(getFactory(), create(":")); }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates a project dependency on the project at path ":composeApp"
|
* Creates a project dependency on the project at path ":composeApp"
|
||||||
|
|||||||
@ -10,10 +10,10 @@ import org.gradle.api.internal.catalog.TypeSafeProjectDependencyFactory;
|
|||||||
import javax.inject.Inject;
|
import javax.inject.Inject;
|
||||||
|
|
||||||
@NonNullApi
|
@NonNullApi
|
||||||
public class SClientProjectDependency extends DelegatingProjectDependency {
|
public class SclientProjectDependency extends DelegatingProjectDependency {
|
||||||
|
|
||||||
@Inject
|
@Inject
|
||||||
public SClientProjectDependency(TypeSafeProjectDependencyFactory factory, ProjectDependencyInternal delegate) {
|
public SclientProjectDependency(TypeSafeProjectDependencyFactory factory, ProjectDependencyInternal delegate) {
|
||||||
super(factory, delegate);
|
super(factory, delegate);
|
||||||
}
|
}
|
||||||
|
|
||||||
BIN
client/.gradle/8.9/executionHistory/executionHistory.bin
Normal file
BIN
client/.gradle/8.9/executionHistory/executionHistory.bin
Normal file
Binary file not shown.
BIN
client/.gradle/8.9/executionHistory/executionHistory.lock
Normal file
BIN
client/.gradle/8.9/executionHistory/executionHistory.lock
Normal file
Binary file not shown.
BIN
client/.gradle/8.9/expanded/expanded.lock
Normal file
BIN
client/.gradle/8.9/expanded/expanded.lock
Normal file
Binary file not shown.
BIN
client/.gradle/8.9/fileChanges/last-build.bin
Normal file
BIN
client/.gradle/8.9/fileChanges/last-build.bin
Normal file
Binary file not shown.
BIN
client/.gradle/8.9/fileHashes/fileHashes.bin
Normal file
BIN
client/.gradle/8.9/fileHashes/fileHashes.bin
Normal file
Binary file not shown.
BIN
client/.gradle/8.9/fileHashes/fileHashes.lock
Normal file
BIN
client/.gradle/8.9/fileHashes/fileHashes.lock
Normal file
Binary file not shown.
BIN
client/.gradle/8.9/fileHashes/resourceHashesCache.bin
Normal file
BIN
client/.gradle/8.9/fileHashes/resourceHashesCache.bin
Normal file
Binary file not shown.
0
client/.gradle/8.9/gc.properties
Normal file
0
client/.gradle/8.9/gc.properties
Normal file
BIN
client/.gradle/buildOutputCleanup/buildOutputCleanup.lock
Normal file
BIN
client/.gradle/buildOutputCleanup/buildOutputCleanup.lock
Normal file
Binary file not shown.
2
client/.gradle/buildOutputCleanup/cache.properties
Normal file
2
client/.gradle/buildOutputCleanup/cache.properties
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
#Sat Jul 19 00:43:03 MSK 2025
|
||||||
|
gradle.version=8.9
|
||||||
BIN
client/.gradle/buildOutputCleanup/outputFiles.bin
Normal file
BIN
client/.gradle/buildOutputCleanup/outputFiles.bin
Normal file
Binary file not shown.
BIN
client/.gradle/file-system.probe
Normal file
BIN
client/.gradle/file-system.probe
Normal file
Binary file not shown.
0
client/.gradle/vcs-1/gc.properties
Normal file
0
client/.gradle/vcs-1/gc.properties
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
@file:OptIn(InternalResourceApi::class)
|
||||||
|
|
||||||
|
package sclient.composeapp.generated.resources
|
||||||
|
|
||||||
|
import kotlin.OptIn
|
||||||
|
import kotlin.String
|
||||||
|
import kotlin.collections.MutableMap
|
||||||
|
import org.jetbrains.compose.resources.DrawableResource
|
||||||
|
import org.jetbrains.compose.resources.InternalResourceApi
|
||||||
|
import org.jetbrains.compose.resources.ResourceItem
|
||||||
|
|
||||||
|
private const val MD: String = "composeResources/sclient.composeapp.generated.resources/"
|
||||||
|
|
||||||
|
internal val Res.drawable.compose_multiplatform: DrawableResource by lazy {
|
||||||
|
DrawableResource("drawable:compose_multiplatform", setOf(
|
||||||
|
ResourceItem(setOf(), "${MD}drawable/compose-multiplatform.xml", -1, -1),
|
||||||
|
))
|
||||||
|
}
|
||||||
|
|
||||||
|
@InternalResourceApi
|
||||||
|
internal fun _collectCommonMainDrawable0Resources(map: MutableMap<String, DrawableResource>) {
|
||||||
|
map.put("compose_multiplatform", Res.drawable.compose_multiplatform)
|
||||||
|
}
|
||||||
@ -0,0 +1,19 @@
|
|||||||
|
package sclient.composeapp.generated.resources
|
||||||
|
|
||||||
|
import kotlin.String
|
||||||
|
import kotlin.collections.Map
|
||||||
|
import org.jetbrains.compose.resources.DrawableResource
|
||||||
|
import org.jetbrains.compose.resources.FontResource
|
||||||
|
import org.jetbrains.compose.resources.PluralStringResource
|
||||||
|
import org.jetbrains.compose.resources.StringArrayResource
|
||||||
|
import org.jetbrains.compose.resources.StringResource
|
||||||
|
|
||||||
|
internal expect val Res.allDrawableResources: Map<String, DrawableResource>
|
||||||
|
|
||||||
|
internal expect val Res.allStringResources: Map<String, StringResource>
|
||||||
|
|
||||||
|
internal expect val Res.allStringArrayResources: Map<String, StringArrayResource>
|
||||||
|
|
||||||
|
internal expect val Res.allPluralStringResources: Map<String, PluralStringResource>
|
||||||
|
|
||||||
|
internal expect val Res.allFontResources: Map<String, FontResource>
|
||||||
@ -0,0 +1,47 @@
|
|||||||
|
@file:OptIn(InternalResourceApi::class)
|
||||||
|
@file:Suppress(
|
||||||
|
"RedundantVisibilityModifier",
|
||||||
|
"REDUNDANT_VISIBILITY_MODIFIER",
|
||||||
|
)
|
||||||
|
|
||||||
|
package sclient.composeapp.generated.resources
|
||||||
|
|
||||||
|
import kotlin.ByteArray
|
||||||
|
import kotlin.OptIn
|
||||||
|
import kotlin.String
|
||||||
|
import kotlin.Suppress
|
||||||
|
import org.jetbrains.compose.resources.InternalResourceApi
|
||||||
|
import org.jetbrains.compose.resources.getResourceUri
|
||||||
|
import org.jetbrains.compose.resources.readResourceBytes
|
||||||
|
|
||||||
|
internal object Res {
|
||||||
|
/**
|
||||||
|
* Reads the content of the resource file at the specified path and returns it as a byte array.
|
||||||
|
*
|
||||||
|
* Example: `val bytes = Res.readBytes("files/key.bin")`
|
||||||
|
*
|
||||||
|
* @param path The path of the file to read in the compose resource's directory.
|
||||||
|
* @return The content of the file as a byte array.
|
||||||
|
*/
|
||||||
|
public suspend fun readBytes(path: String): ByteArray = readResourceBytes("composeResources/sclient.composeapp.generated.resources/" + path)
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the URI string of the resource file at the specified path.
|
||||||
|
*
|
||||||
|
* Example: `val uri = Res.getUri("files/key.bin")`
|
||||||
|
*
|
||||||
|
* @param path The path of the file in the compose resource's directory.
|
||||||
|
* @return The URI string of the file.
|
||||||
|
*/
|
||||||
|
public fun getUri(path: String): String = getResourceUri("composeResources/sclient.composeapp.generated.resources/" + path)
|
||||||
|
|
||||||
|
public object drawable
|
||||||
|
|
||||||
|
public object string
|
||||||
|
|
||||||
|
public object array
|
||||||
|
|
||||||
|
public object plurals
|
||||||
|
|
||||||
|
public object font
|
||||||
|
}
|
||||||
@ -0,0 +1,38 @@
|
|||||||
|
@file:OptIn(org.jetbrains.compose.resources.InternalResourceApi::class)
|
||||||
|
|
||||||
|
package sclient.composeapp.generated.resources
|
||||||
|
|
||||||
|
import kotlin.OptIn
|
||||||
|
import kotlin.String
|
||||||
|
import kotlin.collections.Map
|
||||||
|
import org.jetbrains.compose.resources.DrawableResource
|
||||||
|
import org.jetbrains.compose.resources.FontResource
|
||||||
|
import org.jetbrains.compose.resources.PluralStringResource
|
||||||
|
import org.jetbrains.compose.resources.StringArrayResource
|
||||||
|
import org.jetbrains.compose.resources.StringResource
|
||||||
|
|
||||||
|
internal actual val Res.allDrawableResources: Map<String, DrawableResource> by lazy {
|
||||||
|
val map = mutableMapOf<String, DrawableResource>()
|
||||||
|
_collectCommonMainDrawable0Resources(map)
|
||||||
|
return@lazy map
|
||||||
|
}
|
||||||
|
|
||||||
|
internal actual val Res.allStringResources: Map<String, StringResource> by lazy {
|
||||||
|
val map = mutableMapOf<String, StringResource>()
|
||||||
|
return@lazy map
|
||||||
|
}
|
||||||
|
|
||||||
|
internal actual val Res.allStringArrayResources: Map<String, StringArrayResource> by lazy {
|
||||||
|
val map = mutableMapOf<String, StringArrayResource>()
|
||||||
|
return@lazy map
|
||||||
|
}
|
||||||
|
|
||||||
|
internal actual val Res.allPluralStringResources: Map<String, PluralStringResource> by lazy {
|
||||||
|
val map = mutableMapOf<String, PluralStringResource>()
|
||||||
|
return@lazy map
|
||||||
|
}
|
||||||
|
|
||||||
|
internal actual val Res.allFontResources: Map<String, FontResource> by lazy {
|
||||||
|
val map = mutableMapOf<String, FontResource>()
|
||||||
|
return@lazy map
|
||||||
|
}
|
||||||
@ -0,0 +1,38 @@
|
|||||||
|
@file:OptIn(org.jetbrains.compose.resources.InternalResourceApi::class)
|
||||||
|
|
||||||
|
package sclient.composeapp.generated.resources
|
||||||
|
|
||||||
|
import kotlin.OptIn
|
||||||
|
import kotlin.String
|
||||||
|
import kotlin.collections.Map
|
||||||
|
import org.jetbrains.compose.resources.DrawableResource
|
||||||
|
import org.jetbrains.compose.resources.FontResource
|
||||||
|
import org.jetbrains.compose.resources.PluralStringResource
|
||||||
|
import org.jetbrains.compose.resources.StringArrayResource
|
||||||
|
import org.jetbrains.compose.resources.StringResource
|
||||||
|
|
||||||
|
internal actual val Res.allDrawableResources: Map<String, DrawableResource> by lazy {
|
||||||
|
val map = mutableMapOf<String, DrawableResource>()
|
||||||
|
_collectCommonMainDrawable0Resources(map)
|
||||||
|
return@lazy map
|
||||||
|
}
|
||||||
|
|
||||||
|
internal actual val Res.allStringResources: Map<String, StringResource> by lazy {
|
||||||
|
val map = mutableMapOf<String, StringResource>()
|
||||||
|
return@lazy map
|
||||||
|
}
|
||||||
|
|
||||||
|
internal actual val Res.allStringArrayResources: Map<String, StringArrayResource> by lazy {
|
||||||
|
val map = mutableMapOf<String, StringArrayResource>()
|
||||||
|
return@lazy map
|
||||||
|
}
|
||||||
|
|
||||||
|
internal actual val Res.allPluralStringResources: Map<String, PluralStringResource> by lazy {
|
||||||
|
val map = mutableMapOf<String, PluralStringResource>()
|
||||||
|
return@lazy map
|
||||||
|
}
|
||||||
|
|
||||||
|
internal actual val Res.allFontResources: Map<String, FontResource> by lazy {
|
||||||
|
val map = mutableMapOf<String, FontResource>()
|
||||||
|
return@lazy map
|
||||||
|
}
|
||||||
@ -0,0 +1,44 @@
|
|||||||
|
<vector
|
||||||
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
xmlns:aapt="http://schemas.android.com/aapt"
|
||||||
|
android:width="450dp"
|
||||||
|
android:height="450dp"
|
||||||
|
android:viewportWidth="64"
|
||||||
|
android:viewportHeight="64">
|
||||||
|
<path
|
||||||
|
android:pathData="M56.25,18V46L32,60 7.75,46V18L32,4Z"
|
||||||
|
android:fillColor="#6075f2"/>
|
||||||
|
<path
|
||||||
|
android:pathData="m41.5,26.5v11L32,43V60L56.25,46V18Z"
|
||||||
|
android:fillColor="#6b57ff"/>
|
||||||
|
<path
|
||||||
|
android:pathData="m32,43 l-9.5,-5.5v-11L7.75,18V46L32,60Z">
|
||||||
|
<aapt:attr name="android:fillColor">
|
||||||
|
<gradient
|
||||||
|
android:centerX="23.131"
|
||||||
|
android:centerY="18.441"
|
||||||
|
android:gradientRadius="42.132"
|
||||||
|
android:type="radial">
|
||||||
|
<item android:offset="0" android:color="#FF5383EC"/>
|
||||||
|
<item android:offset="0.867" android:color="#FF7F52FF"/>
|
||||||
|
</gradient>
|
||||||
|
</aapt:attr>
|
||||||
|
</path>
|
||||||
|
<path
|
||||||
|
android:pathData="M22.5,26.5 L32,21 41.5,26.5 56.25,18 32,4 7.75,18Z">
|
||||||
|
<aapt:attr name="android:fillColor">
|
||||||
|
<gradient
|
||||||
|
android:startX="44.172"
|
||||||
|
android:startY="4.377"
|
||||||
|
android:endX="17.973"
|
||||||
|
android:endY="34.035"
|
||||||
|
android:type="linear">
|
||||||
|
<item android:offset="0" android:color="#FF33C3FF"/>
|
||||||
|
<item android:offset="0.878" android:color="#FF5383EC"/>
|
||||||
|
</gradient>
|
||||||
|
</aapt:attr>
|
||||||
|
</path>
|
||||||
|
<path
|
||||||
|
android:pathData="m32,21 l9.526,5.5v11L32,43 22.474,37.5v-11z"
|
||||||
|
android:fillColor="#000000"/>
|
||||||
|
</vector>
|
||||||
@ -0,0 +1,263 @@
|
|||||||
|
{
|
||||||
|
"projectStructure": {
|
||||||
|
"formatVersion": "0.3.3",
|
||||||
|
"isPublishedAsRoot": "true",
|
||||||
|
"variants": [
|
||||||
|
{
|
||||||
|
"name": "debugApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "debugRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "releaseApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "releaseRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "desktopApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "desktopRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "iosArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nativeMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "iosSimulatorArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nativeMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "iosX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nativeMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jsApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"webMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jsRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"webMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "linuxArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nativeMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "linuxX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nativeMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "macosArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nativeMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "macosX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nativeMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "mingwX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nativeMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "tvosArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nativeMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "tvosSimulatorArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nativeMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "tvosX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nativeMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wasmJsApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"webMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wasmJsRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"webMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "watchosArm32ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nativeMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "watchosArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nativeMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "watchosSimulatorArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nativeMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "watchosX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nativeMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"sourceSets": [
|
||||||
|
{
|
||||||
|
"name": "commonMain",
|
||||||
|
"dependsOn": [],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"org.jetbrains.androidx.lifecycle:lifecycle-common",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jvmMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"commonMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"org.jetbrains.androidx.lifecycle:lifecycle-common",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"androidx.arch.core:core-common"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "nativeMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"nonJvmMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.androidx.lifecycle:lifecycle-common",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "nativeMain-cinterop",
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "nonJvmMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"commonMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"org.jetbrains.androidx.lifecycle:lifecycle-common",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "webMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"nonJvmMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"org.jetbrains.androidx.lifecycle:lifecycle-common",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,327 @@
|
|||||||
|
{
|
||||||
|
"projectStructure": {
|
||||||
|
"formatVersion": "0.3.3",
|
||||||
|
"isPublishedAsRoot": "true",
|
||||||
|
"variants": [
|
||||||
|
{
|
||||||
|
"name": "debugApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "debugRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "releaseApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "releaseRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "desktopApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain",
|
||||||
|
"skikoMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "desktopRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain",
|
||||||
|
"skikoMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jsApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain",
|
||||||
|
"jsWasmMain",
|
||||||
|
"jsNativeMain",
|
||||||
|
"skikoMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jsRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain",
|
||||||
|
"jsWasmMain",
|
||||||
|
"jsNativeMain",
|
||||||
|
"skikoMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "macosArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"macosMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"jsNativeMain",
|
||||||
|
"skikoMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "macosX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"macosMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"jsNativeMain",
|
||||||
|
"skikoMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "uikitArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"uikitMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"jsNativeMain",
|
||||||
|
"skikoMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "uikitSimArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"uikitMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"jsNativeMain",
|
||||||
|
"skikoMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "uikitX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"uikitMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"jsNativeMain",
|
||||||
|
"skikoMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wasmJsApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain",
|
||||||
|
"jsWasmMain",
|
||||||
|
"jsNativeMain",
|
||||||
|
"skikoMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wasmJsRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain",
|
||||||
|
"jsWasmMain",
|
||||||
|
"jsNativeMain",
|
||||||
|
"skikoMain"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"sourceSets": [
|
||||||
|
{
|
||||||
|
"name": "commonMain",
|
||||||
|
"dependsOn": [],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.animation:animation",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.ui:ui",
|
||||||
|
"org.jetbrains.kotlinx:atomicfu",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection",
|
||||||
|
"org.jetbrains.compose.ui:ui-text",
|
||||||
|
"org.jetbrains.compose.ui:ui-util",
|
||||||
|
"org.jetbrains.compose.foundation:foundation-layout"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "darwinMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"nativeMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.animation:animation",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.ui:ui",
|
||||||
|
"org.jetbrains.kotlinx:atomicfu",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection",
|
||||||
|
"org.jetbrains.compose.ui:ui-text",
|
||||||
|
"org.jetbrains.compose.ui:ui-util",
|
||||||
|
"org.jetbrains.compose.foundation:foundation-layout",
|
||||||
|
"org.jetbrains.skiko:skiko"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "darwinMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jsNativeMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"skikoMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.animation:animation",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.ui:ui",
|
||||||
|
"org.jetbrains.kotlinx:atomicfu",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection",
|
||||||
|
"org.jetbrains.compose.ui:ui-text",
|
||||||
|
"org.jetbrains.compose.ui:ui-util",
|
||||||
|
"org.jetbrains.compose.foundation:foundation-layout",
|
||||||
|
"org.jetbrains.skiko:skiko"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jsWasmMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"jsNativeMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.animation:animation",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.ui:ui",
|
||||||
|
"org.jetbrains.kotlinx:atomicfu",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection",
|
||||||
|
"org.jetbrains.compose.ui:ui-text",
|
||||||
|
"org.jetbrains.compose.ui:ui-util",
|
||||||
|
"org.jetbrains.compose.foundation:foundation-layout",
|
||||||
|
"org.jetbrains.skiko:skiko"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jvmMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"commonMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.animation:animation",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.ui:ui",
|
||||||
|
"org.jetbrains.kotlinx:atomicfu",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection",
|
||||||
|
"org.jetbrains.compose.ui:ui-text",
|
||||||
|
"org.jetbrains.compose.ui:ui-util",
|
||||||
|
"org.jetbrains.compose.foundation:foundation-layout"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "macosMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"darwinMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.animation:animation",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.ui:ui",
|
||||||
|
"org.jetbrains.kotlinx:atomicfu",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection",
|
||||||
|
"org.jetbrains.compose.ui:ui-text",
|
||||||
|
"org.jetbrains.compose.ui:ui-util",
|
||||||
|
"org.jetbrains.compose.foundation:foundation-layout",
|
||||||
|
"org.jetbrains.skiko:skiko"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "macosMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "nativeMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"commonMain",
|
||||||
|
"jsNativeMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.animation:animation",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.ui:ui",
|
||||||
|
"org.jetbrains.kotlinx:atomicfu",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection",
|
||||||
|
"org.jetbrains.compose.ui:ui-text",
|
||||||
|
"org.jetbrains.compose.ui:ui-util",
|
||||||
|
"org.jetbrains.compose.foundation:foundation-layout",
|
||||||
|
"org.jetbrains.skiko:skiko"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "nativeMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "skikoMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"commonMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.animation:animation",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.ui:ui",
|
||||||
|
"org.jetbrains.kotlinx:atomicfu",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection",
|
||||||
|
"org.jetbrains.compose.ui:ui-text",
|
||||||
|
"org.jetbrains.compose.ui:ui-util",
|
||||||
|
"org.jetbrains.compose.foundation:foundation-layout",
|
||||||
|
"org.jetbrains.skiko:skiko"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "uikitMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"darwinMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.animation:animation",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.ui:ui",
|
||||||
|
"org.jetbrains.kotlinx:atomicfu",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection",
|
||||||
|
"org.jetbrains.compose.ui:ui-text",
|
||||||
|
"org.jetbrains.compose.ui:ui-util",
|
||||||
|
"org.jetbrains.compose.foundation:foundation-layout",
|
||||||
|
"org.jetbrains.skiko:skiko",
|
||||||
|
"org.jetbrains.compose.ui:ui-uikit"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "uikitMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,265 @@
|
|||||||
|
{
|
||||||
|
"projectStructure": {
|
||||||
|
"formatVersion": "0.3.3",
|
||||||
|
"isPublishedAsRoot": "true",
|
||||||
|
"variants": [
|
||||||
|
{
|
||||||
|
"name": "androidApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "androidRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "awtApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "awtRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "iosArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"iosMain",
|
||||||
|
"uikitMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"nativeJsMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "iosSimulatorArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"iosMain",
|
||||||
|
"uikitMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"nativeJsMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "iosX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"iosMain",
|
||||||
|
"uikitMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"nativeJsMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jsApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jsWasmMain",
|
||||||
|
"nativeJsMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jsRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jsWasmMain",
|
||||||
|
"nativeJsMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "linuxX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nativeMain",
|
||||||
|
"nativeJsMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "macosArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"macosMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"nativeJsMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "macosX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"macosMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"nativeJsMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "tvosArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"tvosMain",
|
||||||
|
"uikitMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"nativeJsMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "tvosSimulatorArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"tvosMain",
|
||||||
|
"uikitMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"nativeJsMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "tvosX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"tvosMain",
|
||||||
|
"uikitMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"nativeJsMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wasmJsApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jsWasmMain",
|
||||||
|
"nativeJsMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wasmJsRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jsWasmMain",
|
||||||
|
"nativeJsMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"sourceSets": [
|
||||||
|
{
|
||||||
|
"name": "commonMain",
|
||||||
|
"dependsOn": [],
|
||||||
|
"moduleDependency": [],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "darwinMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"nativeMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlinx:atomicfu",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"org.jetbrains.kotlinx:kotlinx-coroutines-core"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "darwinMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "iosMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"uikitMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlinx:atomicfu",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"org.jetbrains.kotlinx:kotlinx-coroutines-core"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "iosMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jsWasmMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"nativeJsMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "macosMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"darwinMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlinx:atomicfu",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"org.jetbrains.kotlinx:kotlinx-coroutines-core"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "macosMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "nativeJsMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"commonMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "nativeMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"nativeJsMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||||
|
"org.jetbrains.kotlinx:atomicfu"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "nativeMain-cinterop",
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "tvosMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"uikitMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlinx:atomicfu",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"org.jetbrains.kotlinx:kotlinx-coroutines-core"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "tvosMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "uikitMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"darwinMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlinx:atomicfu",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"org.jetbrains.kotlinx:kotlinx-coroutines-core"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "uikitMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,383 @@
|
|||||||
|
{
|
||||||
|
"projectStructure": {
|
||||||
|
"formatVersion": "0.3.3",
|
||||||
|
"isPublishedAsRoot": "true",
|
||||||
|
"variants": [
|
||||||
|
{
|
||||||
|
"name": "androidNativeArm32ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"androidNativeMain",
|
||||||
|
"tzfileMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "androidNativeArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"androidNativeMain",
|
||||||
|
"tzfileMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "androidNativeX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"androidNativeMain",
|
||||||
|
"tzfileMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "androidNativeX86ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"androidNativeMain",
|
||||||
|
"tzfileMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "iosArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"darwinDevicesMain",
|
||||||
|
"darwinMain",
|
||||||
|
"tzdbOnFilesystemMain",
|
||||||
|
"tzfileMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "iosSimulatorArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"darwinSimulatorMain",
|
||||||
|
"darwinMain",
|
||||||
|
"tzdbOnFilesystemMain",
|
||||||
|
"tzfileMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "iosX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"darwinSimulatorMain",
|
||||||
|
"darwinMain",
|
||||||
|
"tzdbOnFilesystemMain",
|
||||||
|
"tzfileMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jsApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonJsMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jsRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonJsMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jvmApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jvmRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "linuxArm32HfpApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"linuxMain",
|
||||||
|
"tzdbOnFilesystemMain",
|
||||||
|
"tzfileMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "linuxArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"linuxMain",
|
||||||
|
"tzdbOnFilesystemMain",
|
||||||
|
"tzfileMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "linuxX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"linuxMain",
|
||||||
|
"tzdbOnFilesystemMain",
|
||||||
|
"tzfileMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "macosArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"darwinDevicesMain",
|
||||||
|
"darwinMain",
|
||||||
|
"tzdbOnFilesystemMain",
|
||||||
|
"tzfileMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "macosX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"darwinDevicesMain",
|
||||||
|
"darwinMain",
|
||||||
|
"tzdbOnFilesystemMain",
|
||||||
|
"tzfileMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "mingwX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "tvosArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"darwinDevicesMain",
|
||||||
|
"darwinMain",
|
||||||
|
"tzdbOnFilesystemMain",
|
||||||
|
"tzfileMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "tvosSimulatorArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"darwinSimulatorMain",
|
||||||
|
"darwinMain",
|
||||||
|
"tzdbOnFilesystemMain",
|
||||||
|
"tzfileMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "tvosX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"darwinDevicesMain",
|
||||||
|
"darwinMain",
|
||||||
|
"tzdbOnFilesystemMain",
|
||||||
|
"tzfileMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wasmJsApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonJsMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wasmJsRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonJsMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "watchosArm32ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"darwinDevicesMain",
|
||||||
|
"darwinMain",
|
||||||
|
"tzdbOnFilesystemMain",
|
||||||
|
"tzfileMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "watchosArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"darwinDevicesMain",
|
||||||
|
"darwinMain",
|
||||||
|
"tzdbOnFilesystemMain",
|
||||||
|
"tzfileMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "watchosDeviceArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"darwinDevicesMain",
|
||||||
|
"darwinMain",
|
||||||
|
"tzdbOnFilesystemMain",
|
||||||
|
"tzfileMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "watchosSimulatorArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"darwinSimulatorMain",
|
||||||
|
"darwinMain",
|
||||||
|
"tzdbOnFilesystemMain",
|
||||||
|
"tzfileMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "watchosX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"darwinDevicesMain",
|
||||||
|
"darwinMain",
|
||||||
|
"tzdbOnFilesystemMain",
|
||||||
|
"tzfileMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"sourceSets": [
|
||||||
|
{
|
||||||
|
"name": "androidNativeMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"tzfileMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlinx:kotlinx-serialization-core",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "androidNativeMain-cinterop",
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "commonJsMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"commonMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlinx:kotlinx-serialization-core"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "commonMain",
|
||||||
|
"dependsOn": [],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "darwinDevicesMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"darwinMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlinx:kotlinx-serialization-core",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "darwinDevicesMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "darwinMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"tzdbOnFilesystemMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlinx:kotlinx-serialization-core",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "darwinMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "darwinSimulatorMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"darwinMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlinx:kotlinx-serialization-core",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "darwinSimulatorMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "linuxMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"tzdbOnFilesystemMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlinx:kotlinx-serialization-core",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "linuxMain-cinterop",
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "nativeMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"commonMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"org.jetbrains.kotlinx:kotlinx-serialization-core"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "nativeMain-cinterop",
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "tzdbOnFilesystemMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"tzfileMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlinx:kotlinx-serialization-core",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "tzdbOnFilesystemMain-cinterop",
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "tzfileMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"nativeMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlinx:kotlinx-serialization-core",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "tzfileMain-cinterop",
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,335 @@
|
|||||||
|
{
|
||||||
|
"projectStructure": {
|
||||||
|
"formatVersion": "0.3.3",
|
||||||
|
"isPublishedAsRoot": "true",
|
||||||
|
"variants": [
|
||||||
|
{
|
||||||
|
"name": "debugApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "debugRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "releaseApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "releaseRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "desktopApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain",
|
||||||
|
"skikoMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "desktopRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain",
|
||||||
|
"skikoMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jsApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain",
|
||||||
|
"jsWasmMain",
|
||||||
|
"jsNativeMain",
|
||||||
|
"skikoMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jsRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain",
|
||||||
|
"jsWasmMain",
|
||||||
|
"jsNativeMain",
|
||||||
|
"skikoMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "macosArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"macosMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"jsNativeMain",
|
||||||
|
"skikoMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "macosX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"macosMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"jsNativeMain",
|
||||||
|
"skikoMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "uikitArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"uikitMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"jsNativeMain",
|
||||||
|
"skikoMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "uikitSimArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"uikitMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"jsNativeMain",
|
||||||
|
"skikoMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "uikitX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"uikitMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"jsNativeMain",
|
||||||
|
"skikoMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wasmJsApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain",
|
||||||
|
"jsWasmMain",
|
||||||
|
"jsNativeMain",
|
||||||
|
"skikoMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wasmJsRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain",
|
||||||
|
"jsWasmMain",
|
||||||
|
"jsNativeMain",
|
||||||
|
"skikoMain"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"sourceSets": [
|
||||||
|
{
|
||||||
|
"name": "commonMain",
|
||||||
|
"dependsOn": [],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.ui:ui-graphics",
|
||||||
|
"org.jetbrains.compose.ui:ui-unit",
|
||||||
|
"org.jetbrains.kotlinx:atomicfu",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.runtime:runtime-saveable",
|
||||||
|
"org.jetbrains.compose.ui:ui-util",
|
||||||
|
"org.jetbrains.compose.ui:ui-geometry",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "darwinMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"nativeMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.ui:ui-graphics",
|
||||||
|
"org.jetbrains.compose.ui:ui-unit",
|
||||||
|
"org.jetbrains.kotlinx:atomicfu",
|
||||||
|
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.runtime:runtime-saveable",
|
||||||
|
"org.jetbrains.compose.ui:ui-util",
|
||||||
|
"org.jetbrains.compose.ui:ui-geometry",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection",
|
||||||
|
"org.jetbrains.skiko:skiko"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "darwinMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jsNativeMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"skikoMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.ui:ui-graphics",
|
||||||
|
"org.jetbrains.compose.ui:ui-unit",
|
||||||
|
"org.jetbrains.kotlinx:atomicfu",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.runtime:runtime-saveable",
|
||||||
|
"org.jetbrains.compose.ui:ui-util",
|
||||||
|
"org.jetbrains.compose.ui:ui-geometry",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection",
|
||||||
|
"org.jetbrains.skiko:skiko"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jsWasmMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"jsNativeMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.ui:ui-graphics",
|
||||||
|
"org.jetbrains.compose.ui:ui-unit",
|
||||||
|
"org.jetbrains.kotlinx:atomicfu",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.runtime:runtime-saveable",
|
||||||
|
"org.jetbrains.compose.ui:ui-util",
|
||||||
|
"org.jetbrains.compose.ui:ui-geometry",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection",
|
||||||
|
"org.jetbrains.skiko:skiko"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jvmMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"commonMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.ui:ui-graphics",
|
||||||
|
"org.jetbrains.compose.ui:ui-unit",
|
||||||
|
"org.jetbrains.kotlinx:atomicfu",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.runtime:runtime-saveable",
|
||||||
|
"org.jetbrains.compose.ui:ui-util",
|
||||||
|
"org.jetbrains.compose.ui:ui-geometry",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "macosMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"darwinMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.ui:ui-graphics",
|
||||||
|
"org.jetbrains.compose.ui:ui-unit",
|
||||||
|
"org.jetbrains.kotlinx:atomicfu",
|
||||||
|
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.runtime:runtime-saveable",
|
||||||
|
"org.jetbrains.compose.ui:ui-util",
|
||||||
|
"org.jetbrains.compose.ui:ui-geometry",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection",
|
||||||
|
"org.jetbrains.skiko:skiko"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "macosMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "nativeMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"commonMain",
|
||||||
|
"jsNativeMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.ui:ui-graphics",
|
||||||
|
"org.jetbrains.compose.ui:ui-unit",
|
||||||
|
"org.jetbrains.kotlinx:atomicfu",
|
||||||
|
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.runtime:runtime-saveable",
|
||||||
|
"org.jetbrains.compose.ui:ui-util",
|
||||||
|
"org.jetbrains.compose.ui:ui-geometry",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection",
|
||||||
|
"org.jetbrains.skiko:skiko"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "nativeMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "skikoMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"commonMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.ui:ui-graphics",
|
||||||
|
"org.jetbrains.compose.ui:ui-unit",
|
||||||
|
"org.jetbrains.kotlinx:atomicfu",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.runtime:runtime-saveable",
|
||||||
|
"org.jetbrains.compose.ui:ui-util",
|
||||||
|
"org.jetbrains.compose.ui:ui-geometry",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection",
|
||||||
|
"org.jetbrains.skiko:skiko"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "uikitMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"darwinMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.ui:ui-graphics",
|
||||||
|
"org.jetbrains.compose.ui:ui-unit",
|
||||||
|
"org.jetbrains.kotlinx:atomicfu",
|
||||||
|
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.runtime:runtime-saveable",
|
||||||
|
"org.jetbrains.compose.ui:ui-util",
|
||||||
|
"org.jetbrains.compose.ui:ui-geometry",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection",
|
||||||
|
"org.jetbrains.skiko:skiko"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "uikitMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,206 @@
|
|||||||
|
{
|
||||||
|
"projectStructure": {
|
||||||
|
"formatVersion": "0.3.3",
|
||||||
|
"isPublishedAsRoot": "true",
|
||||||
|
"variants": [
|
||||||
|
{
|
||||||
|
"name": "androidNativeArm32ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "androidNativeArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "androidNativeX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "androidNativeX86ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "iosArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "iosSimulatorArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "iosX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jsApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jsRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jvmApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jvmRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "linuxArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "linuxX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "macosArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "macosX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "mingwX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "tvosArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "tvosSimulatorArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "tvosX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wasmJsApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wasmJsRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "watchosArm32ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "watchosArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "watchosDeviceArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "watchosSimulatorArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "watchosX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"sourceSets": [
|
||||||
|
{
|
||||||
|
"name": "commonMain",
|
||||||
|
"dependsOn": [],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "nonJvmMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"commonMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,309 @@
|
|||||||
|
{
|
||||||
|
"projectStructure": {
|
||||||
|
"formatVersion": "0.3.3",
|
||||||
|
"isPublishedAsRoot": "true",
|
||||||
|
"variants": [
|
||||||
|
{
|
||||||
|
"name": "debugApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "debugRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "releaseApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "releaseRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "desktopApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain",
|
||||||
|
"notMobileMain",
|
||||||
|
"skikoMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "desktopRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain",
|
||||||
|
"notMobileMain",
|
||||||
|
"skikoMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jsApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain",
|
||||||
|
"jsWasmMain",
|
||||||
|
"jsNativeMain",
|
||||||
|
"notMobileMain",
|
||||||
|
"skikoMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jsRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain",
|
||||||
|
"jsWasmMain",
|
||||||
|
"jsNativeMain",
|
||||||
|
"notMobileMain",
|
||||||
|
"skikoMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "macosArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"macosMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"jsNativeMain",
|
||||||
|
"notMobileMain",
|
||||||
|
"skikoMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "macosX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"macosMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"jsNativeMain",
|
||||||
|
"notMobileMain",
|
||||||
|
"skikoMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "uikitArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"uikitMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"jsNativeMain",
|
||||||
|
"skikoMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "uikitSimArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"uikitMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"jsNativeMain",
|
||||||
|
"skikoMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "uikitX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"uikitMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"jsNativeMain",
|
||||||
|
"skikoMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wasmJsApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain",
|
||||||
|
"jsWasmMain",
|
||||||
|
"jsNativeMain",
|
||||||
|
"notMobileMain",
|
||||||
|
"skikoMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wasmJsRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain",
|
||||||
|
"jsWasmMain",
|
||||||
|
"jsNativeMain",
|
||||||
|
"notMobileMain",
|
||||||
|
"skikoMain"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"sourceSets": [
|
||||||
|
{
|
||||||
|
"name": "commonMain",
|
||||||
|
"dependsOn": [],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.ui:ui",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.ui:ui-util"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "darwinMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"nativeMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.ui:ui",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.ui:ui-util"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "darwinMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jsNativeMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"commonMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.ui:ui",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.ui:ui-util"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jsWasmMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"jsNativeMain",
|
||||||
|
"notMobileMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.ui:ui",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.ui:ui-util"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jvmMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"commonMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.ui:ui",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.ui:ui-util"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "macosMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"darwinMain",
|
||||||
|
"notMobileMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.ui:ui",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.ui:ui-util"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "macosMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "nativeMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"commonMain",
|
||||||
|
"jsNativeMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.ui:ui",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.ui:ui-util"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "nativeMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "notMobileMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"skikoMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.ui:ui",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.ui:ui-util"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "skikoMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"commonMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.ui:ui",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.ui:ui-util"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "uikitMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"darwinMain",
|
||||||
|
"skikoMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.ui:ui",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.ui:ui-util"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "uikitMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,229 @@
|
|||||||
|
{
|
||||||
|
"projectStructure": {
|
||||||
|
"formatVersion": "0.3.3",
|
||||||
|
"isPublishedAsRoot": "true",
|
||||||
|
"variants": [
|
||||||
|
{
|
||||||
|
"name": "androidNativeArm32ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "androidNativeArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "androidNativeX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "androidNativeX86ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "iosArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "iosSimulatorArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "iosX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jsApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jsAndWasmSharedMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jsRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jsAndWasmSharedMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jvmApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jvmRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "linuxArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "linuxX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "macosArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "macosX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "mingwX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "tvosArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "tvosSimulatorArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "tvosX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wasmJsApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jsAndWasmSharedMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wasmJsRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jsAndWasmSharedMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wasmWasiApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jsAndWasmSharedMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wasmWasiRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jsAndWasmSharedMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "watchosArm32ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "watchosArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "watchosDeviceArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "watchosSimulatorArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "watchosX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"sourceSets": [
|
||||||
|
{
|
||||||
|
"name": "commonMain",
|
||||||
|
"dependsOn": [],
|
||||||
|
"moduleDependency": [],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jsAndWasmSharedMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"commonMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "nativeMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"commonMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "nativeMain-cinterop",
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,178 @@
|
|||||||
|
{
|
||||||
|
"projectStructure": {
|
||||||
|
"formatVersion": "0.3.3",
|
||||||
|
"isPublishedAsRoot": "true",
|
||||||
|
"variants": [
|
||||||
|
{
|
||||||
|
"name": "iosArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "iosSimulatorArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "iosX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jsApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jsRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jvmApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jvmRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "linuxArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "linuxX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "macosArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "macosX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "mingwX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "tvosArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "tvosSimulatorArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "tvosX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wasmJsApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wasmJsRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "watchosArm32ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "watchosArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "watchosSimulatorArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "watchosX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"sourceSets": [
|
||||||
|
{
|
||||||
|
"name": "commonMain",
|
||||||
|
"dependsOn": [],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "nonJvmMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"commonMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.kotlinx:atomicfu"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,283 @@
|
|||||||
|
{
|
||||||
|
"projectStructure": {
|
||||||
|
"formatVersion": "0.3.3",
|
||||||
|
"isPublishedAsRoot": "true",
|
||||||
|
"variants": [
|
||||||
|
{
|
||||||
|
"name": "debugApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "debugRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "releaseApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "releaseRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "desktopApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain",
|
||||||
|
"jbMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "desktopRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain",
|
||||||
|
"jbMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jsApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain",
|
||||||
|
"webMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"jbMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jsRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain",
|
||||||
|
"webMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"jbMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "macosArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"macosMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"jbMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "macosX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"macosMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"jbMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "uikitArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"uikitMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"jbMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "uikitSimArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"uikitMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"jbMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "uikitX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"uikitMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"jbMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wasmJsApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain",
|
||||||
|
"webMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"jbMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wasmJsRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain",
|
||||||
|
"webMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"jbMain"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"sourceSets": [
|
||||||
|
{
|
||||||
|
"name": "commonMain",
|
||||||
|
"dependsOn": [],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.ui:ui-util",
|
||||||
|
"org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "darwinMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"nativeMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.ui:ui-util",
|
||||||
|
"org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "darwinMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jbMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"commonMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.ui:ui-util",
|
||||||
|
"org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jvmMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"commonMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.ui:ui-util",
|
||||||
|
"org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "macosMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"darwinMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.ui:ui-util",
|
||||||
|
"org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "macosMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "nativeMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"commonMain",
|
||||||
|
"nonJvmMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.ui:ui-util",
|
||||||
|
"org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "nativeMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "nonJvmMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"jbMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.ui:ui-util",
|
||||||
|
"org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "uikitMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"darwinMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.ui:ui-util",
|
||||||
|
"org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "uikitMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "webMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"nonJvmMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.ui:ui-util",
|
||||||
|
"org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,302 @@
|
|||||||
|
{
|
||||||
|
"projectStructure": {
|
||||||
|
"formatVersion": "0.3.3",
|
||||||
|
"isPublishedAsRoot": "true",
|
||||||
|
"variants": [
|
||||||
|
{
|
||||||
|
"name": "debugApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "debugRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "releaseApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "releaseRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "desktopApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain",
|
||||||
|
"nonAndroidMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "desktopRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain",
|
||||||
|
"nonAndroidMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jsApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain",
|
||||||
|
"nonAndroidMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jsRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain",
|
||||||
|
"nonAndroidMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "linuxArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nonAndroidMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "linuxX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nonAndroidMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "macosArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"macosMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"nonAndroidMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "macosX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"macosMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"nonAndroidMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "mingwX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nonAndroidMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "tvosArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nonAndroidMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "tvosSimulatorArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nonAndroidMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "tvosX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nonAndroidMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "uikitArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"uikitMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"nonAndroidMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "uikitSimArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"uikitMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"nonAndroidMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "uikitX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"uikitMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"nonAndroidMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wasmJsApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain",
|
||||||
|
"nonAndroidMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wasmJsRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain",
|
||||||
|
"nonAndroidMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "watchosArm32ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nonAndroidMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "watchosArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nonAndroidMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "watchosSimulatorArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nonAndroidMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "watchosX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nonAndroidMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"sourceSets": [
|
||||||
|
{
|
||||||
|
"name": "commonMain",
|
||||||
|
"dependsOn": [],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.androidx.lifecycle:lifecycle-runtime",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.androidx.lifecycle:lifecycle-common",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "darwinMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"nativeMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.androidx.lifecycle:lifecycle-runtime",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.androidx.lifecycle:lifecycle-common"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "darwinMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jvmMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"commonMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.androidx.lifecycle:lifecycle-runtime",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.androidx.lifecycle:lifecycle-common",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "macosMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"darwinMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.androidx.lifecycle:lifecycle-runtime",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.androidx.lifecycle:lifecycle-common"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "macosMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "nativeMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"commonMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.androidx.lifecycle:lifecycle-runtime",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.androidx.lifecycle:lifecycle-common"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "nativeMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "nonAndroidMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"commonMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.androidx.lifecycle:lifecycle-runtime",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.androidx.lifecycle:lifecycle-common",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "uikitMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"darwinMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.androidx.lifecycle:lifecycle-runtime",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.androidx.lifecycle:lifecycle-common"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "uikitMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,386 @@
|
|||||||
|
{
|
||||||
|
"projectStructure": {
|
||||||
|
"formatVersion": "0.3.3",
|
||||||
|
"isPublishedAsRoot": "true",
|
||||||
|
"variants": [
|
||||||
|
{
|
||||||
|
"name": "debugApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "debugRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "releaseApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "releaseRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "desktopApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain",
|
||||||
|
"skikoMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "desktopRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain",
|
||||||
|
"skikoMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jsApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain",
|
||||||
|
"jsWasmMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"jsNativeMain",
|
||||||
|
"skikoMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jsRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain",
|
||||||
|
"jsWasmMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"jsNativeMain",
|
||||||
|
"skikoMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "macosArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"macosMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"jsNativeMain",
|
||||||
|
"skikoMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "macosX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"macosMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"jsNativeMain",
|
||||||
|
"skikoMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "uikitArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"uikitMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"jsNativeMain",
|
||||||
|
"skikoMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "uikitSimArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"uikitMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"jsNativeMain",
|
||||||
|
"skikoMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "uikitX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"uikitMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"jsNativeMain",
|
||||||
|
"skikoMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wasmJsApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain",
|
||||||
|
"jsWasmMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"jsNativeMain",
|
||||||
|
"skikoMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wasmJsRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain",
|
||||||
|
"jsWasmMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"jsNativeMain",
|
||||||
|
"skikoMain"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"sourceSets": [
|
||||||
|
{
|
||||||
|
"name": "commonMain",
|
||||||
|
"dependsOn": [],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.foundation:foundation",
|
||||||
|
"org.jetbrains.compose.material:material-ripple",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.ui:ui-graphics",
|
||||||
|
"org.jetbrains.compose.ui:ui-text",
|
||||||
|
"org.jetbrains.kotlinx:atomicfu",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"org.jetbrains.compose.animation:animation-core",
|
||||||
|
"org.jetbrains.compose.ui:ui-util",
|
||||||
|
"org.jetbrains.compose.ui:ui-backhandler",
|
||||||
|
"org.jetbrains.compose.foundation:foundation-layout",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "darwinMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"nativeMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.foundation:foundation",
|
||||||
|
"org.jetbrains.compose.material:material-ripple",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.ui:ui-graphics",
|
||||||
|
"org.jetbrains.compose.ui:ui-text",
|
||||||
|
"org.jetbrains.kotlinx:atomicfu",
|
||||||
|
"org.jetbrains.compose.animation:animation-core",
|
||||||
|
"org.jetbrains.compose.ui:ui-util",
|
||||||
|
"org.jetbrains.compose.ui:ui-backhandler",
|
||||||
|
"org.jetbrains.compose.foundation:foundation-layout",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection",
|
||||||
|
"org.jetbrains.kotlinx:kotlinx-datetime"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "darwinMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jsNativeMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"skikoMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.foundation:foundation",
|
||||||
|
"org.jetbrains.compose.material:material-ripple",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.ui:ui-graphics",
|
||||||
|
"org.jetbrains.compose.ui:ui-text",
|
||||||
|
"org.jetbrains.kotlinx:atomicfu",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"org.jetbrains.compose.animation:animation-core",
|
||||||
|
"org.jetbrains.compose.ui:ui-util",
|
||||||
|
"org.jetbrains.compose.ui:ui-backhandler",
|
||||||
|
"org.jetbrains.compose.foundation:foundation-layout",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection",
|
||||||
|
"org.jetbrains.kotlinx:kotlinx-datetime"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jsWasmMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"nonJvmMain",
|
||||||
|
"jsNativeMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.foundation:foundation",
|
||||||
|
"org.jetbrains.compose.material:material-ripple",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.ui:ui-graphics",
|
||||||
|
"org.jetbrains.compose.ui:ui-text",
|
||||||
|
"org.jetbrains.kotlinx:atomicfu",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"org.jetbrains.compose.animation:animation-core",
|
||||||
|
"org.jetbrains.compose.ui:ui-util",
|
||||||
|
"org.jetbrains.compose.ui:ui-backhandler",
|
||||||
|
"org.jetbrains.compose.foundation:foundation-layout",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection",
|
||||||
|
"org.jetbrains.kotlinx:kotlinx-datetime"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jvmMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"commonMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.foundation:foundation",
|
||||||
|
"org.jetbrains.compose.material:material-ripple",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.ui:ui-graphics",
|
||||||
|
"org.jetbrains.compose.ui:ui-text",
|
||||||
|
"org.jetbrains.kotlinx:atomicfu",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"org.jetbrains.compose.animation:animation-core",
|
||||||
|
"org.jetbrains.compose.ui:ui-util",
|
||||||
|
"org.jetbrains.compose.ui:ui-backhandler",
|
||||||
|
"org.jetbrains.compose.foundation:foundation-layout",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "macosMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"darwinMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.foundation:foundation",
|
||||||
|
"org.jetbrains.compose.material:material-ripple",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.ui:ui-graphics",
|
||||||
|
"org.jetbrains.compose.ui:ui-text",
|
||||||
|
"org.jetbrains.kotlinx:atomicfu",
|
||||||
|
"org.jetbrains.compose.animation:animation-core",
|
||||||
|
"org.jetbrains.compose.ui:ui-util",
|
||||||
|
"org.jetbrains.compose.ui:ui-backhandler",
|
||||||
|
"org.jetbrains.compose.foundation:foundation-layout",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection",
|
||||||
|
"org.jetbrains.kotlinx:kotlinx-datetime"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "macosMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "nativeMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"commonMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"jsNativeMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.foundation:foundation",
|
||||||
|
"org.jetbrains.compose.material:material-ripple",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.ui:ui-graphics",
|
||||||
|
"org.jetbrains.compose.ui:ui-text",
|
||||||
|
"org.jetbrains.kotlinx:atomicfu",
|
||||||
|
"org.jetbrains.compose.animation:animation-core",
|
||||||
|
"org.jetbrains.compose.ui:ui-util",
|
||||||
|
"org.jetbrains.compose.ui:ui-backhandler",
|
||||||
|
"org.jetbrains.compose.foundation:foundation-layout",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection",
|
||||||
|
"org.jetbrains.kotlinx:kotlinx-datetime"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "nativeMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "nonJvmMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"commonMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.foundation:foundation",
|
||||||
|
"org.jetbrains.compose.material:material-ripple",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.ui:ui-graphics",
|
||||||
|
"org.jetbrains.compose.ui:ui-text",
|
||||||
|
"org.jetbrains.kotlinx:atomicfu",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"org.jetbrains.compose.animation:animation-core",
|
||||||
|
"org.jetbrains.compose.ui:ui-util",
|
||||||
|
"org.jetbrains.compose.ui:ui-backhandler",
|
||||||
|
"org.jetbrains.compose.foundation:foundation-layout",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "skikoMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"commonMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.foundation:foundation",
|
||||||
|
"org.jetbrains.compose.material:material-ripple",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.ui:ui-graphics",
|
||||||
|
"org.jetbrains.compose.ui:ui-text",
|
||||||
|
"org.jetbrains.kotlinx:atomicfu",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"org.jetbrains.compose.animation:animation-core",
|
||||||
|
"org.jetbrains.compose.ui:ui-util",
|
||||||
|
"org.jetbrains.compose.ui:ui-backhandler",
|
||||||
|
"org.jetbrains.compose.foundation:foundation-layout",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection",
|
||||||
|
"org.jetbrains.kotlinx:kotlinx-datetime"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "uikitMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"darwinMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.foundation:foundation",
|
||||||
|
"org.jetbrains.compose.material:material-ripple",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.ui:ui-graphics",
|
||||||
|
"org.jetbrains.compose.ui:ui-text",
|
||||||
|
"org.jetbrains.kotlinx:atomicfu",
|
||||||
|
"org.jetbrains.compose.animation:animation-core",
|
||||||
|
"org.jetbrains.compose.ui:ui-util",
|
||||||
|
"org.jetbrains.compose.ui:ui-backhandler",
|
||||||
|
"org.jetbrains.compose.foundation:foundation-layout",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection",
|
||||||
|
"org.jetbrains.kotlinx:kotlinx-datetime"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "uikitMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,259 @@
|
|||||||
|
{
|
||||||
|
"projectStructure": {
|
||||||
|
"formatVersion": "0.3.3",
|
||||||
|
"isPublishedAsRoot": "true",
|
||||||
|
"variants": [
|
||||||
|
{
|
||||||
|
"name": "debugApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "debugRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "releaseApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "releaseRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "desktopApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain",
|
||||||
|
"jbMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "desktopRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain",
|
||||||
|
"jbMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jsApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain",
|
||||||
|
"jsWasmMain",
|
||||||
|
"jbMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jsRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain",
|
||||||
|
"jsWasmMain",
|
||||||
|
"jbMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "macosArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"macosMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"jbMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "macosX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"macosMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"jbMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "uikitArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"uikitMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"jbMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "uikitSimArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"uikitMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"jbMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "uikitX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"uikitMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"jbMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wasmJsApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain",
|
||||||
|
"jsWasmMain",
|
||||||
|
"jbMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wasmJsRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain",
|
||||||
|
"jsWasmMain",
|
||||||
|
"jbMain"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"sourceSets": [
|
||||||
|
{
|
||||||
|
"name": "commonMain",
|
||||||
|
"dependsOn": [],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.foundation:foundation",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection",
|
||||||
|
"org.jetbrains.compose.animation:animation",
|
||||||
|
"org.jetbrains.compose.ui:ui-util"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "darwinMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"nativeMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.foundation:foundation",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection",
|
||||||
|
"org.jetbrains.compose.animation:animation",
|
||||||
|
"org.jetbrains.compose.ui:ui-util"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "darwinMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jbMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"commonMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.foundation:foundation",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection",
|
||||||
|
"org.jetbrains.compose.animation:animation",
|
||||||
|
"org.jetbrains.compose.ui:ui-util"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jsWasmMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"jbMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.foundation:foundation",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection",
|
||||||
|
"org.jetbrains.compose.animation:animation",
|
||||||
|
"org.jetbrains.compose.ui:ui-util"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jvmMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"commonMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.foundation:foundation",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection",
|
||||||
|
"org.jetbrains.compose.animation:animation",
|
||||||
|
"org.jetbrains.compose.ui:ui-util"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "macosMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"darwinMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.foundation:foundation",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection",
|
||||||
|
"org.jetbrains.compose.animation:animation",
|
||||||
|
"org.jetbrains.compose.ui:ui-util"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "macosMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "nativeMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"commonMain",
|
||||||
|
"jbMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.foundation:foundation",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection",
|
||||||
|
"org.jetbrains.compose.animation:animation",
|
||||||
|
"org.jetbrains.compose.ui:ui-util"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "nativeMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "uikitMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"darwinMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.foundation:foundation",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection",
|
||||||
|
"org.jetbrains.compose.animation:animation",
|
||||||
|
"org.jetbrains.compose.ui:ui-util"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "uikitMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,454 @@
|
|||||||
|
{
|
||||||
|
"projectStructure": {
|
||||||
|
"formatVersion": "0.3.3",
|
||||||
|
"isPublishedAsRoot": "true",
|
||||||
|
"variants": [
|
||||||
|
{
|
||||||
|
"name": "debugApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "debugRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "releaseApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "releaseRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "desktopApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain",
|
||||||
|
"nonAndroidMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "desktopRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain",
|
||||||
|
"nonAndroidMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jsApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain",
|
||||||
|
"webMain",
|
||||||
|
"nonAndroidMain",
|
||||||
|
"nonJvmMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jsRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain",
|
||||||
|
"webMain",
|
||||||
|
"nonAndroidMain",
|
||||||
|
"nonJvmMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "linuxArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"linuxMain",
|
||||||
|
"posixMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"nonAndroidMain",
|
||||||
|
"nonJvmMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "linuxX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"linuxMain",
|
||||||
|
"posixMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"nonAndroidMain",
|
||||||
|
"nonJvmMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "macosArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"macosMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"nonAndroidMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"posixMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "macosX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"macosMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"nonAndroidMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"posixMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "mingwX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"nonAndroidMain",
|
||||||
|
"nonJvmMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "tvosArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"tvOsMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"nonAndroidMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"posixMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "tvosSimulatorArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"tvOsMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"nonAndroidMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"posixMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "tvosX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"tvOsMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"nonAndroidMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"posixMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "uikitArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"uikitMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"nonAndroidMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"posixMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "uikitSimArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"uikitMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"nonAndroidMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"posixMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "uikitX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"uikitMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"nonAndroidMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"posixMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wasmJsApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain",
|
||||||
|
"webMain",
|
||||||
|
"nonAndroidMain",
|
||||||
|
"nonJvmMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wasmJsRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain",
|
||||||
|
"webMain",
|
||||||
|
"nonAndroidMain",
|
||||||
|
"nonJvmMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "watchosArm32ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"watchOsMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"nonAndroidMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"posixMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "watchosArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"watchOsMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"nonAndroidMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"posixMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "watchosSimulatorArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"watchOsMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"nonAndroidMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"posixMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "watchosX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"watchOsMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"nonAndroidMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"posixMain"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"sourceSets": [
|
||||||
|
{
|
||||||
|
"name": "commonMain",
|
||||||
|
"dependsOn": [],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||||
|
"org.jetbrains.kotlinx:atomicfu",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "darwinMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"nativeMain",
|
||||||
|
"posixMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||||
|
"org.jetbrains.kotlinx:atomicfu",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "darwinMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jvmMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"commonMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||||
|
"org.jetbrains.kotlinx:atomicfu",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "linuxMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"posixMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||||
|
"org.jetbrains.kotlinx:atomicfu",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "linuxMain-cinterop",
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "macosMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"darwinMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||||
|
"org.jetbrains.kotlinx:atomicfu",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "macosMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "nativeMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"commonMain",
|
||||||
|
"nonAndroidMain",
|
||||||
|
"nonJvmMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||||
|
"org.jetbrains.kotlinx:atomicfu",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "nativeMain-cinterop",
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "nonAndroidMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"commonMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||||
|
"org.jetbrains.kotlinx:atomicfu",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "nonJvmMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"commonMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||||
|
"org.jetbrains.kotlinx:atomicfu",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "posixMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"nativeMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||||
|
"org.jetbrains.kotlinx:atomicfu",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "posixMain-cinterop",
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "tvOsMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"darwinMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||||
|
"org.jetbrains.kotlinx:atomicfu",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "tvOsMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "uikitMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"darwinMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||||
|
"org.jetbrains.kotlinx:atomicfu",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "uikitMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "watchOsMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"darwinMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||||
|
"org.jetbrains.kotlinx:atomicfu",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "watchOsMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "webMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"nonAndroidMain",
|
||||||
|
"nonJvmMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||||
|
"org.jetbrains.kotlinx:atomicfu",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,273 @@
|
|||||||
|
{
|
||||||
|
"projectStructure": {
|
||||||
|
"formatVersion": "0.3.3",
|
||||||
|
"isPublishedAsRoot": "true",
|
||||||
|
"variants": [
|
||||||
|
{
|
||||||
|
"name": "debugApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "debugRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "releaseApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "releaseRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "desktopApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "desktopRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jsApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain",
|
||||||
|
"jsWasmMain",
|
||||||
|
"jsNativeMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jsRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain",
|
||||||
|
"jsWasmMain",
|
||||||
|
"jsNativeMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "macosArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"macosMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"jsNativeMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "macosX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"macosMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"jsNativeMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "uikitArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"uikitMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"jsNativeMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "uikitSimArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"uikitMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"jsNativeMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "uikitX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"uikitMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"jsNativeMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wasmJsApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain",
|
||||||
|
"jsWasmMain",
|
||||||
|
"jsNativeMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wasmJsRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain",
|
||||||
|
"jsWasmMain",
|
||||||
|
"jsNativeMain"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"sourceSets": [
|
||||||
|
{
|
||||||
|
"name": "commonMain",
|
||||||
|
"dependsOn": [],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.animation:animation-core",
|
||||||
|
"org.jetbrains.compose.foundation:foundation-layout",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.ui:ui",
|
||||||
|
"org.jetbrains.compose.ui:ui-geometry",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection",
|
||||||
|
"org.jetbrains.compose.ui:ui-util"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "darwinMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"nativeMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.animation:animation-core",
|
||||||
|
"org.jetbrains.compose.foundation:foundation-layout",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.ui:ui",
|
||||||
|
"org.jetbrains.compose.ui:ui-geometry",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection",
|
||||||
|
"org.jetbrains.compose.ui:ui-util"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "darwinMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jsNativeMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"commonMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.animation:animation-core",
|
||||||
|
"org.jetbrains.compose.foundation:foundation-layout",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.ui:ui",
|
||||||
|
"org.jetbrains.compose.ui:ui-geometry",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection",
|
||||||
|
"org.jetbrains.compose.ui:ui-util"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jsWasmMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"jsNativeMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.animation:animation-core",
|
||||||
|
"org.jetbrains.compose.foundation:foundation-layout",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.ui:ui",
|
||||||
|
"org.jetbrains.compose.ui:ui-geometry",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection",
|
||||||
|
"org.jetbrains.compose.ui:ui-util"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jvmMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"commonMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.animation:animation-core",
|
||||||
|
"org.jetbrains.compose.foundation:foundation-layout",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.ui:ui",
|
||||||
|
"org.jetbrains.compose.ui:ui-geometry",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection",
|
||||||
|
"org.jetbrains.compose.ui:ui-util"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "macosMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"darwinMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.animation:animation-core",
|
||||||
|
"org.jetbrains.compose.foundation:foundation-layout",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.ui:ui",
|
||||||
|
"org.jetbrains.compose.ui:ui-geometry",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection",
|
||||||
|
"org.jetbrains.compose.ui:ui-util"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "macosMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "nativeMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"commonMain",
|
||||||
|
"jsNativeMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.animation:animation-core",
|
||||||
|
"org.jetbrains.compose.foundation:foundation-layout",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.ui:ui",
|
||||||
|
"org.jetbrains.compose.ui:ui-geometry",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection",
|
||||||
|
"org.jetbrains.compose.ui:ui-util"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "nativeMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "uikitMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"darwinMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.animation:animation-core",
|
||||||
|
"org.jetbrains.compose.foundation:foundation-layout",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.ui:ui",
|
||||||
|
"org.jetbrains.compose.ui:ui-geometry",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection",
|
||||||
|
"org.jetbrains.compose.ui:ui-util"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "uikitMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,324 @@
|
|||||||
|
{
|
||||||
|
"projectStructure": {
|
||||||
|
"formatVersion": "0.3.3",
|
||||||
|
"isPublishedAsRoot": "true",
|
||||||
|
"variants": [
|
||||||
|
{
|
||||||
|
"name": "debugApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "debugRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "releaseApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "releaseRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "desktopApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain",
|
||||||
|
"skikoExcludingWebMain",
|
||||||
|
"skikoMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "desktopRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain",
|
||||||
|
"skikoExcludingWebMain",
|
||||||
|
"skikoMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jsApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain",
|
||||||
|
"jsWasmMain",
|
||||||
|
"jsNativeMain",
|
||||||
|
"skikoMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jsRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain",
|
||||||
|
"jsWasmMain",
|
||||||
|
"jsNativeMain",
|
||||||
|
"skikoMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "macosArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"macosMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"jsNativeMain",
|
||||||
|
"skikoMain",
|
||||||
|
"skikoExcludingWebMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "macosX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"macosMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"jsNativeMain",
|
||||||
|
"skikoMain",
|
||||||
|
"skikoExcludingWebMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "uikitArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"uikitMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"jsNativeMain",
|
||||||
|
"skikoMain",
|
||||||
|
"skikoExcludingWebMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "uikitSimArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"uikitMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"jsNativeMain",
|
||||||
|
"skikoMain",
|
||||||
|
"skikoExcludingWebMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "uikitX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"uikitMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"jsNativeMain",
|
||||||
|
"skikoMain",
|
||||||
|
"skikoExcludingWebMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wasmJsApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain",
|
||||||
|
"jsWasmMain",
|
||||||
|
"jsNativeMain",
|
||||||
|
"skikoMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wasmJsRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain",
|
||||||
|
"jsWasmMain",
|
||||||
|
"jsNativeMain",
|
||||||
|
"skikoMain"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"sourceSets": [
|
||||||
|
{
|
||||||
|
"name": "commonMain",
|
||||||
|
"dependsOn": [],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.ui:ui-unit",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.ui:ui-util",
|
||||||
|
"org.jetbrains.compose.ui:ui-geometry",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "darwinMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"nativeMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.ui:ui-unit",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.ui:ui-util",
|
||||||
|
"org.jetbrains.compose.ui:ui-geometry",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection",
|
||||||
|
"org.jetbrains.skiko:skiko"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "darwinMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jsNativeMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"skikoMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.ui:ui-unit",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.ui:ui-util",
|
||||||
|
"org.jetbrains.compose.ui:ui-geometry",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection",
|
||||||
|
"org.jetbrains.skiko:skiko"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jsWasmMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"jsNativeMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.ui:ui-unit",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.ui:ui-util",
|
||||||
|
"org.jetbrains.compose.ui:ui-geometry",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection",
|
||||||
|
"org.jetbrains.skiko:skiko"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jvmMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"commonMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.ui:ui-unit",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.ui:ui-util",
|
||||||
|
"org.jetbrains.compose.ui:ui-geometry",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "macosMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"darwinMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.ui:ui-unit",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.ui:ui-util",
|
||||||
|
"org.jetbrains.compose.ui:ui-geometry",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection",
|
||||||
|
"org.jetbrains.skiko:skiko"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "macosMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "nativeMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"commonMain",
|
||||||
|
"jsNativeMain",
|
||||||
|
"skikoExcludingWebMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.ui:ui-unit",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.ui:ui-util",
|
||||||
|
"org.jetbrains.compose.ui:ui-geometry",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection",
|
||||||
|
"org.jetbrains.skiko:skiko"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "nativeMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "skikoExcludingWebMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"skikoMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.ui:ui-unit",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.ui:ui-util",
|
||||||
|
"org.jetbrains.compose.ui:ui-geometry",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection",
|
||||||
|
"org.jetbrains.skiko:skiko"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "skikoMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"commonMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.ui:ui-unit",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.ui:ui-util",
|
||||||
|
"org.jetbrains.compose.ui:ui-geometry",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection",
|
||||||
|
"org.jetbrains.skiko:skiko"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "uikitMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"darwinMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.ui:ui-unit",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.ui:ui-util",
|
||||||
|
"org.jetbrains.compose.ui:ui-geometry",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection",
|
||||||
|
"org.jetbrains.skiko:skiko"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "uikitMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,444 @@
|
|||||||
|
{
|
||||||
|
"projectStructure": {
|
||||||
|
"formatVersion": "0.3.3",
|
||||||
|
"isPublishedAsRoot": "true",
|
||||||
|
"variants": [
|
||||||
|
{
|
||||||
|
"name": "androidNativeArm32ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"androidNativeMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"concurrentMain",
|
||||||
|
"nativeOtherMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "androidNativeArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"androidNativeMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"concurrentMain",
|
||||||
|
"nativeOtherMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "androidNativeX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"androidNativeMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"concurrentMain",
|
||||||
|
"nativeOtherMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "androidNativeX86ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"androidNativeMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"concurrentMain",
|
||||||
|
"nativeOtherMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "iosArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"iosMain",
|
||||||
|
"appleMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"concurrentMain",
|
||||||
|
"nativeDarwinMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "iosSimulatorArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"iosMain",
|
||||||
|
"appleMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"concurrentMain",
|
||||||
|
"nativeDarwinMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "iosX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"iosMain",
|
||||||
|
"appleMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"concurrentMain",
|
||||||
|
"nativeDarwinMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jsApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain",
|
||||||
|
"jsAndWasmJsSharedMain",
|
||||||
|
"jsAndWasmSharedMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jsRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain",
|
||||||
|
"jsAndWasmJsSharedMain",
|
||||||
|
"jsAndWasmSharedMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jvmApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain",
|
||||||
|
"concurrentMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jvmRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain",
|
||||||
|
"concurrentMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "linuxArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"linuxMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"concurrentMain",
|
||||||
|
"nativeOtherMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "linuxX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"linuxMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"concurrentMain",
|
||||||
|
"nativeOtherMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "macosArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"macosMain",
|
||||||
|
"appleMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"concurrentMain",
|
||||||
|
"nativeDarwinMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "macosX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"macosMain",
|
||||||
|
"appleMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"concurrentMain",
|
||||||
|
"nativeDarwinMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "mingwX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"concurrentMain",
|
||||||
|
"nativeOtherMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "tvosArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"tvosMain",
|
||||||
|
"appleMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"concurrentMain",
|
||||||
|
"nativeDarwinMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "tvosSimulatorArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"tvosMain",
|
||||||
|
"appleMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"concurrentMain",
|
||||||
|
"nativeDarwinMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "tvosX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"tvosMain",
|
||||||
|
"appleMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"concurrentMain",
|
||||||
|
"nativeDarwinMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wasmJsApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain",
|
||||||
|
"jsAndWasmJsSharedMain",
|
||||||
|
"jsAndWasmSharedMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wasmJsRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain",
|
||||||
|
"jsAndWasmJsSharedMain",
|
||||||
|
"jsAndWasmSharedMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wasmWasiApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain",
|
||||||
|
"jsAndWasmSharedMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wasmWasiRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain",
|
||||||
|
"jsAndWasmSharedMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "watchosArm32ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"watchosMain",
|
||||||
|
"appleMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"concurrentMain",
|
||||||
|
"nativeDarwinMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "watchosArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"watchosMain",
|
||||||
|
"appleMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"concurrentMain",
|
||||||
|
"nativeDarwinMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "watchosDeviceArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"watchosMain",
|
||||||
|
"appleMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"concurrentMain",
|
||||||
|
"nativeDarwinMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "watchosSimulatorArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"watchosMain",
|
||||||
|
"appleMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"concurrentMain",
|
||||||
|
"nativeDarwinMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "watchosX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"watchosMain",
|
||||||
|
"appleMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"concurrentMain",
|
||||||
|
"nativeDarwinMain"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"sourceSets": [
|
||||||
|
{
|
||||||
|
"name": "androidNativeMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"nativeMain",
|
||||||
|
"nativeOtherMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlinx:atomicfu",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "androidNativeMain-cinterop",
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "appleMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"nativeMain",
|
||||||
|
"nativeDarwinMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlinx:atomicfu",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "appleMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "commonMain",
|
||||||
|
"dependsOn": [],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "concurrentMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"commonMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "iosMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"appleMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlinx:atomicfu",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "iosMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jsAndWasmJsSharedMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"jsAndWasmSharedMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jsAndWasmSharedMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"commonMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "linuxMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"nativeMain",
|
||||||
|
"nativeOtherMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlinx:atomicfu",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "linuxMain-cinterop",
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "macosMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"appleMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlinx:atomicfu",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "macosMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "nativeDarwinMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"nativeMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlinx:atomicfu",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "nativeDarwinMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "nativeMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"commonMain",
|
||||||
|
"concurrentMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"org.jetbrains.kotlinx:atomicfu"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "nativeMain-cinterop",
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "nativeOtherMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"nativeMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlinx:atomicfu",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "nativeOtherMain-cinterop",
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "tvosMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"appleMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlinx:atomicfu",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "tvosMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "watchosMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"appleMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlinx:atomicfu",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "watchosMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,70 @@
|
|||||||
|
{
|
||||||
|
"projectStructure": {
|
||||||
|
"formatVersion": "0.3.3",
|
||||||
|
"isPublishedAsRoot": "true",
|
||||||
|
"variants": [
|
||||||
|
{
|
||||||
|
"name": "jsApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jsRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jvmApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jvmRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "nativeApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wasmJsApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wasmJsRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wasmWasiApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wasmWasiRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"sourceSets": [
|
||||||
|
{
|
||||||
|
"name": "commonMain",
|
||||||
|
"dependsOn": [],
|
||||||
|
"moduleDependency": [],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,348 @@
|
|||||||
|
{
|
||||||
|
"projectStructure": {
|
||||||
|
"formatVersion": "0.3.3",
|
||||||
|
"isPublishedAsRoot": "true",
|
||||||
|
"variants": [
|
||||||
|
{
|
||||||
|
"name": "androidNativeArm32ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"androidNativeMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "androidNativeArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"androidNativeMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "androidNativeX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"androidNativeMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "androidNativeX86ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"androidNativeMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "iosArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"iosMain",
|
||||||
|
"appleMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "iosSimulatorArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"iosMain",
|
||||||
|
"appleMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "iosX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"iosMain",
|
||||||
|
"appleMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jsApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jsRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jvmApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jvmRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "linuxArm32HfpApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"linuxMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "linuxArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"linuxMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "linuxX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"linuxMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "macosArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"macosMain",
|
||||||
|
"appleMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "macosX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"macosMain",
|
||||||
|
"appleMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "mingwX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "tvosArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"tvosMain",
|
||||||
|
"appleMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "tvosSimulatorArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"tvosMain",
|
||||||
|
"appleMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "tvosX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"tvosMain",
|
||||||
|
"appleMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wasmJsApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wasmJsRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wasmWasiApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wasmWasiRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "watchosArm32ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"watchosMain",
|
||||||
|
"appleMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "watchosArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"watchosMain",
|
||||||
|
"appleMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "watchosDeviceArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"watchosMain",
|
||||||
|
"appleMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "watchosSimulatorArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"watchosMain",
|
||||||
|
"appleMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "watchosX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"watchosMain",
|
||||||
|
"appleMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"sourceSets": [
|
||||||
|
{
|
||||||
|
"name": "androidNativeMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"nativeMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib-common",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "androidNativeMain-cinterop",
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "appleMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"nativeMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib-common",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "appleMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "commonMain",
|
||||||
|
"dependsOn": [],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib-common",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "iosMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"appleMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib-common",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "iosMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "linuxMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"nativeMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib-common",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "linuxMain-cinterop",
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "macosMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"appleMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib-common",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "macosMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "nativeMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"commonMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib-common",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "nativeMain-cinterop",
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "tvosMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"appleMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib-common",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "tvosMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "watchosMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"appleMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib-common",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "watchosMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,248 @@
|
|||||||
|
{
|
||||||
|
"projectStructure": {
|
||||||
|
"formatVersion": "0.3.3",
|
||||||
|
"isPublishedAsRoot": "true",
|
||||||
|
"variants": [
|
||||||
|
{
|
||||||
|
"name": "debugApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "debugRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "releaseApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "releaseRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "desktopApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain",
|
||||||
|
"jbMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "desktopRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain",
|
||||||
|
"jbMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jsApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain",
|
||||||
|
"webMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"jbMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jsRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain",
|
||||||
|
"webMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"jbMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "macosArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"macosMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"jbMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "macosX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"macosMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"jbMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "uikitArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"uikitMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"jbMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "uikitSimArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"uikitMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"jbMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "uikitX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"uikitMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"jbMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wasmJsApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain",
|
||||||
|
"webMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"jbMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wasmJsRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain",
|
||||||
|
"webMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"jbMain"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"sourceSets": [
|
||||||
|
{
|
||||||
|
"name": "commonMain",
|
||||||
|
"dependsOn": [],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "darwinMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"nativeMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.collection-internal:collection"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "darwinMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jbMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"commonMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jvmMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"commonMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "macosMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"darwinMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.collection-internal:collection"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "macosMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "nativeMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"commonMain",
|
||||||
|
"nonJvmMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.collection-internal:collection"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "nativeMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "nonJvmMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"jbMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "uikitMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"darwinMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.collection-internal:collection",
|
||||||
|
"org.jetbrains.compose.ui:ui-uikit"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "uikitMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "webMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"nonJvmMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,152 @@
|
|||||||
|
{
|
||||||
|
"projectStructure": {
|
||||||
|
"formatVersion": "0.3.3",
|
||||||
|
"isPublishedAsRoot": "true",
|
||||||
|
"variants": [
|
||||||
|
{
|
||||||
|
"name": "jsApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"assertionsCommonMain",
|
||||||
|
"commonMain",
|
||||||
|
"annotationsCommonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jsRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"assertionsCommonMain",
|
||||||
|
"commonMain",
|
||||||
|
"annotationsCommonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jvmApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"assertionsCommonMain",
|
||||||
|
"commonMain",
|
||||||
|
"annotationsCommonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jvmRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"assertionsCommonMain",
|
||||||
|
"commonMain",
|
||||||
|
"annotationsCommonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jvmJUnitApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"annotationsCommonMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jvmJUnitRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"annotationsCommonMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jvmJUnit5ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"annotationsCommonMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jvmJUnit5RuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"annotationsCommonMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jvmTestNGApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"annotationsCommonMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jvmTestNGRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"annotationsCommonMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "nativeApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"assertionsCommonMain",
|
||||||
|
"commonMain",
|
||||||
|
"annotationsCommonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wasmJsApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"assertionsCommonMain",
|
||||||
|
"commonMain",
|
||||||
|
"annotationsCommonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wasmJsRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"assertionsCommonMain",
|
||||||
|
"commonMain",
|
||||||
|
"annotationsCommonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wasmWasiApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"assertionsCommonMain",
|
||||||
|
"commonMain",
|
||||||
|
"annotationsCommonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wasmWasiRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"assertionsCommonMain",
|
||||||
|
"commonMain",
|
||||||
|
"annotationsCommonMain"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"sourceSets": [
|
||||||
|
{
|
||||||
|
"name": "annotationsCommonMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"commonMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "assertionsCommonMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"commonMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "commonMain",
|
||||||
|
"dependsOn": [],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,195 @@
|
|||||||
|
{
|
||||||
|
"projectStructure": {
|
||||||
|
"formatVersion": "0.3.3",
|
||||||
|
"isPublishedAsRoot": "true",
|
||||||
|
"variants": [
|
||||||
|
{
|
||||||
|
"name": "debugApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "debugRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "releaseApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "releaseRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "desktopApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "desktopRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jsApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jsRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "macosArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"macosMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "macosX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"macosMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "uikitArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"uikitMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "uikitSimArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"uikitMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "uikitX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"uikitMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wasmJsApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wasmJsRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"sourceSets": [
|
||||||
|
{
|
||||||
|
"name": "commonMain",
|
||||||
|
"dependsOn": [],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.ui:ui-util"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "darwinMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"nativeMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.ui:ui-util"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "darwinMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jvmMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"commonMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.ui:ui-util"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "macosMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"darwinMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.ui:ui-util"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "macosMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "nativeMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"commonMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.ui:ui-util"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "nativeMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "uikitMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"darwinMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.ui:ui-util"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "uikitMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,425 @@
|
|||||||
|
{
|
||||||
|
"projectStructure": {
|
||||||
|
"formatVersion": "0.3.3",
|
||||||
|
"isPublishedAsRoot": "true",
|
||||||
|
"variants": [
|
||||||
|
{
|
||||||
|
"name": "debugApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "debugRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "releaseApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "releaseRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "desktopApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain",
|
||||||
|
"notMobileMain",
|
||||||
|
"skikoMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "desktopRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain",
|
||||||
|
"notMobileMain",
|
||||||
|
"skikoMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jsApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain",
|
||||||
|
"jsWasmMain",
|
||||||
|
"jsNativeMain",
|
||||||
|
"skikoMain",
|
||||||
|
"notMobileMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jsRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain",
|
||||||
|
"jsWasmMain",
|
||||||
|
"jsNativeMain",
|
||||||
|
"skikoMain",
|
||||||
|
"notMobileMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "macosArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"macosMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"jsNativeMain",
|
||||||
|
"skikoMain",
|
||||||
|
"notMobileMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "macosX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"macosMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"jsNativeMain",
|
||||||
|
"skikoMain",
|
||||||
|
"notMobileMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "uikitArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"uikitMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"jsNativeMain",
|
||||||
|
"skikoMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "uikitSimArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"uikitMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"jsNativeMain",
|
||||||
|
"skikoMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "uikitX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"uikitMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"jsNativeMain",
|
||||||
|
"skikoMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wasmJsApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain",
|
||||||
|
"jsWasmMain",
|
||||||
|
"jsNativeMain",
|
||||||
|
"skikoMain",
|
||||||
|
"notMobileMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wasmJsRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain",
|
||||||
|
"jsWasmMain",
|
||||||
|
"jsNativeMain",
|
||||||
|
"skikoMain",
|
||||||
|
"notMobileMain"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"sourceSets": [
|
||||||
|
{
|
||||||
|
"name": "commonMain",
|
||||||
|
"dependsOn": [],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.runtime:runtime-saveable",
|
||||||
|
"org.jetbrains.compose.ui:ui-geometry",
|
||||||
|
"org.jetbrains.compose.ui:ui-graphics",
|
||||||
|
"org.jetbrains.compose.ui:ui-text",
|
||||||
|
"org.jetbrains.compose.ui:ui-unit",
|
||||||
|
"org.jetbrains.compose.ui:ui-util",
|
||||||
|
"org.jetbrains.androidx.lifecycle:lifecycle-common",
|
||||||
|
"org.jetbrains.kotlinx:atomicfu",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.androidx.lifecycle:lifecycle-runtime",
|
||||||
|
"org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose",
|
||||||
|
"org.jetbrains.androidx.lifecycle:lifecycle-viewmodel"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "darwinMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"nativeMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.runtime:runtime-saveable",
|
||||||
|
"org.jetbrains.compose.ui:ui-geometry",
|
||||||
|
"org.jetbrains.compose.ui:ui-graphics",
|
||||||
|
"org.jetbrains.compose.ui:ui-text",
|
||||||
|
"org.jetbrains.compose.ui:ui-unit",
|
||||||
|
"org.jetbrains.compose.ui:ui-util",
|
||||||
|
"org.jetbrains.androidx.lifecycle:lifecycle-common",
|
||||||
|
"org.jetbrains.kotlinx:atomicfu",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection",
|
||||||
|
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.androidx.lifecycle:lifecycle-runtime",
|
||||||
|
"org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose",
|
||||||
|
"org.jetbrains.androidx.lifecycle:lifecycle-viewmodel",
|
||||||
|
"org.jetbrains.skiko:skiko",
|
||||||
|
"org.jetbrains.compose.ui:ui-backhandler"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "darwinMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jsNativeMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"skikoMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.runtime:runtime-saveable",
|
||||||
|
"org.jetbrains.compose.ui:ui-geometry",
|
||||||
|
"org.jetbrains.compose.ui:ui-graphics",
|
||||||
|
"org.jetbrains.compose.ui:ui-text",
|
||||||
|
"org.jetbrains.compose.ui:ui-unit",
|
||||||
|
"org.jetbrains.compose.ui:ui-util",
|
||||||
|
"org.jetbrains.androidx.lifecycle:lifecycle-common",
|
||||||
|
"org.jetbrains.kotlinx:atomicfu",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.androidx.lifecycle:lifecycle-runtime",
|
||||||
|
"org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose",
|
||||||
|
"org.jetbrains.androidx.lifecycle:lifecycle-viewmodel",
|
||||||
|
"org.jetbrains.skiko:skiko",
|
||||||
|
"org.jetbrains.compose.ui:ui-backhandler"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jsWasmMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"jsNativeMain",
|
||||||
|
"notMobileMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.runtime:runtime-saveable",
|
||||||
|
"org.jetbrains.compose.ui:ui-geometry",
|
||||||
|
"org.jetbrains.compose.ui:ui-graphics",
|
||||||
|
"org.jetbrains.compose.ui:ui-text",
|
||||||
|
"org.jetbrains.compose.ui:ui-unit",
|
||||||
|
"org.jetbrains.compose.ui:ui-util",
|
||||||
|
"org.jetbrains.androidx.lifecycle:lifecycle-common",
|
||||||
|
"org.jetbrains.kotlinx:atomicfu",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.androidx.lifecycle:lifecycle-runtime",
|
||||||
|
"org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose",
|
||||||
|
"org.jetbrains.androidx.lifecycle:lifecycle-viewmodel",
|
||||||
|
"org.jetbrains.skiko:skiko",
|
||||||
|
"org.jetbrains.compose.ui:ui-backhandler"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jvmMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"commonMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.runtime:runtime-saveable",
|
||||||
|
"org.jetbrains.compose.ui:ui-geometry",
|
||||||
|
"org.jetbrains.compose.ui:ui-graphics",
|
||||||
|
"org.jetbrains.compose.ui:ui-text",
|
||||||
|
"org.jetbrains.compose.ui:ui-unit",
|
||||||
|
"org.jetbrains.compose.ui:ui-util",
|
||||||
|
"org.jetbrains.androidx.lifecycle:lifecycle-common",
|
||||||
|
"org.jetbrains.kotlinx:atomicfu",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.androidx.lifecycle:lifecycle-runtime",
|
||||||
|
"org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose",
|
||||||
|
"org.jetbrains.androidx.lifecycle:lifecycle-viewmodel"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "macosMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"darwinMain",
|
||||||
|
"notMobileMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.runtime:runtime-saveable",
|
||||||
|
"org.jetbrains.compose.ui:ui-geometry",
|
||||||
|
"org.jetbrains.compose.ui:ui-graphics",
|
||||||
|
"org.jetbrains.compose.ui:ui-text",
|
||||||
|
"org.jetbrains.compose.ui:ui-unit",
|
||||||
|
"org.jetbrains.compose.ui:ui-util",
|
||||||
|
"org.jetbrains.androidx.lifecycle:lifecycle-common",
|
||||||
|
"org.jetbrains.kotlinx:atomicfu",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection",
|
||||||
|
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.androidx.lifecycle:lifecycle-runtime",
|
||||||
|
"org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose",
|
||||||
|
"org.jetbrains.androidx.lifecycle:lifecycle-viewmodel",
|
||||||
|
"org.jetbrains.skiko:skiko",
|
||||||
|
"org.jetbrains.compose.ui:ui-backhandler"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "macosMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "nativeMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"commonMain",
|
||||||
|
"jsNativeMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.runtime:runtime-saveable",
|
||||||
|
"org.jetbrains.compose.ui:ui-geometry",
|
||||||
|
"org.jetbrains.compose.ui:ui-graphics",
|
||||||
|
"org.jetbrains.compose.ui:ui-text",
|
||||||
|
"org.jetbrains.compose.ui:ui-unit",
|
||||||
|
"org.jetbrains.compose.ui:ui-util",
|
||||||
|
"org.jetbrains.androidx.lifecycle:lifecycle-common",
|
||||||
|
"org.jetbrains.kotlinx:atomicfu",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection",
|
||||||
|
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.androidx.lifecycle:lifecycle-runtime",
|
||||||
|
"org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose",
|
||||||
|
"org.jetbrains.androidx.lifecycle:lifecycle-viewmodel",
|
||||||
|
"org.jetbrains.skiko:skiko",
|
||||||
|
"org.jetbrains.compose.ui:ui-backhandler"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "nativeMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "notMobileMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"skikoMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.runtime:runtime-saveable",
|
||||||
|
"org.jetbrains.compose.ui:ui-geometry",
|
||||||
|
"org.jetbrains.compose.ui:ui-graphics",
|
||||||
|
"org.jetbrains.compose.ui:ui-text",
|
||||||
|
"org.jetbrains.compose.ui:ui-unit",
|
||||||
|
"org.jetbrains.compose.ui:ui-util",
|
||||||
|
"org.jetbrains.androidx.lifecycle:lifecycle-common",
|
||||||
|
"org.jetbrains.kotlinx:atomicfu",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.androidx.lifecycle:lifecycle-runtime",
|
||||||
|
"org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose",
|
||||||
|
"org.jetbrains.androidx.lifecycle:lifecycle-viewmodel",
|
||||||
|
"org.jetbrains.skiko:skiko",
|
||||||
|
"org.jetbrains.compose.ui:ui-backhandler"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "skikoMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"commonMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.runtime:runtime-saveable",
|
||||||
|
"org.jetbrains.compose.ui:ui-geometry",
|
||||||
|
"org.jetbrains.compose.ui:ui-graphics",
|
||||||
|
"org.jetbrains.compose.ui:ui-text",
|
||||||
|
"org.jetbrains.compose.ui:ui-unit",
|
||||||
|
"org.jetbrains.compose.ui:ui-util",
|
||||||
|
"org.jetbrains.androidx.lifecycle:lifecycle-common",
|
||||||
|
"org.jetbrains.kotlinx:atomicfu",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.androidx.lifecycle:lifecycle-runtime",
|
||||||
|
"org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose",
|
||||||
|
"org.jetbrains.androidx.lifecycle:lifecycle-viewmodel",
|
||||||
|
"org.jetbrains.skiko:skiko",
|
||||||
|
"org.jetbrains.compose.ui:ui-backhandler"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "uikitMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"darwinMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.runtime:runtime-saveable",
|
||||||
|
"org.jetbrains.compose.ui:ui-geometry",
|
||||||
|
"org.jetbrains.compose.ui:ui-graphics",
|
||||||
|
"org.jetbrains.compose.ui:ui-text",
|
||||||
|
"org.jetbrains.compose.ui:ui-unit",
|
||||||
|
"org.jetbrains.compose.ui:ui-util",
|
||||||
|
"org.jetbrains.androidx.lifecycle:lifecycle-common",
|
||||||
|
"org.jetbrains.kotlinx:atomicfu",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection",
|
||||||
|
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.androidx.lifecycle:lifecycle-runtime",
|
||||||
|
"org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose",
|
||||||
|
"org.jetbrains.androidx.lifecycle:lifecycle-viewmodel",
|
||||||
|
"org.jetbrains.skiko:skiko",
|
||||||
|
"org.jetbrains.compose.ui:ui-backhandler",
|
||||||
|
"org.jetbrains.compose.ui:ui-uikit"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "uikitMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,255 @@
|
|||||||
|
{
|
||||||
|
"projectStructure": {
|
||||||
|
"formatVersion": "0.3.3",
|
||||||
|
"isPublishedAsRoot": "true",
|
||||||
|
"variants": [
|
||||||
|
{
|
||||||
|
"name": "debugApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "debugRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "releaseApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "releaseRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "desktopApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "desktopRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jsApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jsRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "linuxArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "linuxX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "macosArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"macosMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "macosX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"macosMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "mingwX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "tvosArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "tvosSimulatorArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "tvosX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "uikitArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"uikitMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "uikitSimArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"uikitMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "uikitX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"uikitMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wasmJsApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wasmJsRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "watchosArm32ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "watchosArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "watchosSimulatorArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "watchosX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"sourceSets": [
|
||||||
|
{
|
||||||
|
"name": "commonMain",
|
||||||
|
"dependsOn": [],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "darwinMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"nativeMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "darwinMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jvmMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"commonMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "macosMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"darwinMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "macosMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "nativeMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"commonMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "nativeMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "uikitMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"darwinMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "uikitMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,249 @@
|
|||||||
|
{
|
||||||
|
"projectStructure": {
|
||||||
|
"formatVersion": "0.3.3",
|
||||||
|
"isPublishedAsRoot": "true",
|
||||||
|
"variants": [
|
||||||
|
{
|
||||||
|
"name": "debugApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmAndAndroidMain",
|
||||||
|
"blockingMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "debugRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmAndAndroidMain",
|
||||||
|
"blockingMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "releaseApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmAndAndroidMain",
|
||||||
|
"blockingMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "releaseRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmAndAndroidMain",
|
||||||
|
"blockingMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "desktopApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain",
|
||||||
|
"skikoMain",
|
||||||
|
"jvmAndAndroidMain",
|
||||||
|
"blockingMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "desktopRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain",
|
||||||
|
"skikoMain",
|
||||||
|
"jvmAndAndroidMain",
|
||||||
|
"blockingMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "iosArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"iosMain",
|
||||||
|
"appleMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"skikoMain",
|
||||||
|
"blockingMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "iosSimulatorArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"iosMain",
|
||||||
|
"appleMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"skikoMain",
|
||||||
|
"blockingMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "iosX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"iosMain",
|
||||||
|
"appleMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"skikoMain",
|
||||||
|
"blockingMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jsApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain",
|
||||||
|
"webMain",
|
||||||
|
"skikoMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jsRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain",
|
||||||
|
"webMain",
|
||||||
|
"skikoMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "macosArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"macosMain",
|
||||||
|
"appleMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"skikoMain",
|
||||||
|
"blockingMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "macosX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"macosMain",
|
||||||
|
"appleMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"skikoMain",
|
||||||
|
"blockingMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wasmJsApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain",
|
||||||
|
"webMain",
|
||||||
|
"skikoMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wasmJsRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain",
|
||||||
|
"webMain",
|
||||||
|
"skikoMain"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"sourceSets": [
|
||||||
|
{
|
||||||
|
"name": "appleMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"nativeMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.foundation:foundation",
|
||||||
|
"org.jetbrains.kotlinx:kotlinx-coroutines-core"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "appleMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "blockingMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"commonMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "commonMain",
|
||||||
|
"dependsOn": [],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "iosMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"appleMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.foundation:foundation",
|
||||||
|
"org.jetbrains.kotlinx:kotlinx-coroutines-core"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "iosMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jvmAndAndroidMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"blockingMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "macosMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"appleMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.foundation:foundation",
|
||||||
|
"org.jetbrains.kotlinx:kotlinx-coroutines-core"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "macosMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "nativeMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"commonMain",
|
||||||
|
"skikoMain",
|
||||||
|
"blockingMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.foundation:foundation",
|
||||||
|
"org.jetbrains.kotlinx:kotlinx-coroutines-core"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "nativeMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "skikoMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"commonMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "webMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"skikoMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,333 @@
|
|||||||
|
{
|
||||||
|
"projectStructure": {
|
||||||
|
"formatVersion": "0.3.3",
|
||||||
|
"isPublishedAsRoot": "true",
|
||||||
|
"variants": [
|
||||||
|
{
|
||||||
|
"name": "jsApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain",
|
||||||
|
"jsWasmMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"jbMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jsRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain",
|
||||||
|
"jsWasmMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"jbMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jvmApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jbMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jvmRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jbMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "linuxArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"jbMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "linuxX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"jbMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "macosArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"macosMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"jbMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "macosX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"macosMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"jbMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "mingwX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"jbMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "tvosArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"tvOsMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"jbMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "tvosSimulatorArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"tvOsMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"jbMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "tvosX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"tvOsMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"jbMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "uikitArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"uikitMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"jbMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "uikitSimArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"uikitMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"jbMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "uikitX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"uikitMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"jbMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wasmJsApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain",
|
||||||
|
"jsWasmMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"jbMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wasmJsRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain",
|
||||||
|
"jsWasmMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"jbMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "watchosArm32ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"watchOsMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"jbMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "watchosArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"watchOsMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"jbMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "watchosSimulatorArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"watchOsMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"jbMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "watchosX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"watchOsMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"jbMain"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"sourceSets": [
|
||||||
|
{
|
||||||
|
"name": "commonMain",
|
||||||
|
"dependsOn": [],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"androidx.collection:collection"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "darwinMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"nativeMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"androidx.collection:collection"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "darwinMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jbMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"commonMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"androidx.collection:collection"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jsWasmMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"nonJvmMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"androidx.collection:collection"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "macosMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"darwinMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"androidx.collection:collection"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "macosMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "nativeMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"commonMain",
|
||||||
|
"nonJvmMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"androidx.collection:collection"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "nativeMain-cinterop",
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "nonJvmMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"jbMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"androidx.collection:collection"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "tvOsMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"darwinMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"androidx.collection:collection"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "tvOsMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "uikitMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"darwinMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"androidx.collection:collection"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "uikitMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "watchOsMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"darwinMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"androidx.collection:collection"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "watchOsMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,311 @@
|
|||||||
|
{
|
||||||
|
"projectStructure": {
|
||||||
|
"formatVersion": "0.3.3",
|
||||||
|
"isPublishedAsRoot": "true",
|
||||||
|
"variants": [
|
||||||
|
{
|
||||||
|
"name": "debugApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "debugRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "releaseApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "releaseRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "desktopApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain",
|
||||||
|
"jbMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "desktopRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain",
|
||||||
|
"jbMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jsApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain",
|
||||||
|
"jsWasmMain",
|
||||||
|
"jsNativeMain",
|
||||||
|
"jbMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jsRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain",
|
||||||
|
"jsWasmMain",
|
||||||
|
"jsNativeMain",
|
||||||
|
"jbMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "macosArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"macosMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"jsNativeMain",
|
||||||
|
"jbMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "macosX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"macosMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"jsNativeMain",
|
||||||
|
"jbMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "uikitArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"uikitMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"jsNativeMain",
|
||||||
|
"jbMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "uikitSimArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"uikitMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"jsNativeMain",
|
||||||
|
"jbMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "uikitX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"uikitMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"jsNativeMain",
|
||||||
|
"jbMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wasmJsApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain",
|
||||||
|
"jsWasmMain",
|
||||||
|
"jsNativeMain",
|
||||||
|
"jbMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wasmJsRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain",
|
||||||
|
"jsWasmMain",
|
||||||
|
"jsNativeMain",
|
||||||
|
"jbMain"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"sourceSets": [
|
||||||
|
{
|
||||||
|
"name": "commonMain",
|
||||||
|
"dependsOn": [],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||||
|
"org.jetbrains.kotlinx:atomicfu",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.ui:ui",
|
||||||
|
"org.jetbrains.compose.ui:ui-unit",
|
||||||
|
"org.jetbrains.compose.ui:ui-util",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "darwinMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"nativeMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||||
|
"org.jetbrains.kotlinx:atomicfu",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.ui:ui",
|
||||||
|
"org.jetbrains.compose.ui:ui-unit",
|
||||||
|
"org.jetbrains.compose.ui:ui-util"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "darwinMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jbMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"commonMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||||
|
"org.jetbrains.kotlinx:atomicfu",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.ui:ui",
|
||||||
|
"org.jetbrains.compose.ui:ui-unit",
|
||||||
|
"org.jetbrains.compose.ui:ui-util",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jsNativeMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"commonMain",
|
||||||
|
"jbMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||||
|
"org.jetbrains.kotlinx:atomicfu",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.ui:ui",
|
||||||
|
"org.jetbrains.compose.ui:ui-unit",
|
||||||
|
"org.jetbrains.compose.ui:ui-util",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jsWasmMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"jsNativeMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||||
|
"org.jetbrains.kotlinx:atomicfu",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.ui:ui",
|
||||||
|
"org.jetbrains.compose.ui:ui-unit",
|
||||||
|
"org.jetbrains.compose.ui:ui-util",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jvmMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"commonMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||||
|
"org.jetbrains.kotlinx:atomicfu",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.ui:ui",
|
||||||
|
"org.jetbrains.compose.ui:ui-unit",
|
||||||
|
"org.jetbrains.compose.ui:ui-util",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "macosMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"darwinMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||||
|
"org.jetbrains.kotlinx:atomicfu",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.ui:ui",
|
||||||
|
"org.jetbrains.compose.ui:ui-unit",
|
||||||
|
"org.jetbrains.compose.ui:ui-util"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "macosMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "nativeMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"commonMain",
|
||||||
|
"jsNativeMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||||
|
"org.jetbrains.kotlinx:atomicfu",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.ui:ui",
|
||||||
|
"org.jetbrains.compose.ui:ui-unit",
|
||||||
|
"org.jetbrains.compose.ui:ui-util"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "nativeMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "uikitMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"darwinMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
|
||||||
|
"org.jetbrains.kotlinx:atomicfu",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.collection-internal:collection",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.ui:ui",
|
||||||
|
"org.jetbrains.compose.ui:ui-unit",
|
||||||
|
"org.jetbrains.compose.ui:ui-util"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "uikitMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,293 @@
|
|||||||
|
{
|
||||||
|
"projectStructure": {
|
||||||
|
"formatVersion": "0.3.3",
|
||||||
|
"isPublishedAsRoot": "true",
|
||||||
|
"variants": [
|
||||||
|
{
|
||||||
|
"name": "debugApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "debugRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "releaseApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "releaseRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "desktopApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "desktopRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "iosArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "iosSimulatorArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "iosX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jsApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"webMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jsRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"webMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "linuxArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"linuxMain",
|
||||||
|
"nativeMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "linuxX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"linuxMain",
|
||||||
|
"nativeMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "macosArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "macosX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "tvosArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "tvosSimulatorArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "tvosX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wasmJsApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"webMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wasmJsRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"webMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "watchosArm32ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "watchosArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "watchosSimulatorArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "watchosX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"sourceSets": [
|
||||||
|
{
|
||||||
|
"name": "commonMain",
|
||||||
|
"dependsOn": [],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"org.jetbrains.kotlinx:kotlinx-coroutines-core"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "darwinMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"nativeMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.kotlinx:kotlinx-coroutines-core"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "darwinMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jvmMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"commonMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"org.jetbrains.kotlinx:kotlinx-coroutines-core"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "linuxMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"nativeMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.kotlinx:kotlinx-coroutines-core"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "linuxMain-cinterop",
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "nativeMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"nonJvmMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.kotlinx:kotlinx-coroutines-core"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "nativeMain-cinterop",
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "nonJvmMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"commonMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"org.jetbrains.kotlinx:kotlinx-coroutines-core"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "webMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"nonJvmMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"org.jetbrains.kotlinx:kotlinx-coroutines-core"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,286 @@
|
|||||||
|
{
|
||||||
|
"projectStructure": {
|
||||||
|
"formatVersion": "0.3.3",
|
||||||
|
"isPublishedAsRoot": "true",
|
||||||
|
"variants": [
|
||||||
|
{
|
||||||
|
"name": "iosArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"darwinMain",
|
||||||
|
"unixMain",
|
||||||
|
"nativeMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "iosSimulatorArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"darwinMain",
|
||||||
|
"unixMain",
|
||||||
|
"nativeMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "iosX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"darwinMain",
|
||||||
|
"unixMain",
|
||||||
|
"nativeMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jsApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"webMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jsRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"webMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jvmApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jvmRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "linuxArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"linuxMain",
|
||||||
|
"unixMain",
|
||||||
|
"nativeMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "linuxX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"linuxMain",
|
||||||
|
"unixMain",
|
||||||
|
"nativeMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "macosArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"darwinMain",
|
||||||
|
"unixMain",
|
||||||
|
"nativeMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "macosX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"darwinMain",
|
||||||
|
"unixMain",
|
||||||
|
"nativeMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "mingwX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"nativeMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "tvosArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"darwinMain",
|
||||||
|
"unixMain",
|
||||||
|
"nativeMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "tvosSimulatorArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"darwinMain",
|
||||||
|
"unixMain",
|
||||||
|
"nativeMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "tvosX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"darwinMain",
|
||||||
|
"unixMain",
|
||||||
|
"nativeMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wasmJsApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"webMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wasmJsRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"webMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "watchosArm32ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"darwinMain",
|
||||||
|
"unixMain",
|
||||||
|
"nativeMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "watchosArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"darwinMain",
|
||||||
|
"unixMain",
|
||||||
|
"nativeMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "watchosDeviceArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"darwinMain",
|
||||||
|
"unixMain",
|
||||||
|
"nativeMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "watchosSimulatorArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"darwinMain",
|
||||||
|
"unixMain",
|
||||||
|
"nativeMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "watchosX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"darwinMain",
|
||||||
|
"unixMain",
|
||||||
|
"nativeMain",
|
||||||
|
"nonJvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"sourceSets": [
|
||||||
|
{
|
||||||
|
"name": "commonMain",
|
||||||
|
"dependsOn": [],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"androidx.annotation:annotation"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "darwinMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"unixMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"androidx.annotation:annotation"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "darwinMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "linuxMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"unixMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"androidx.annotation:annotation"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "linuxMain-cinterop",
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "nativeMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"nonJvmMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"androidx.annotation:annotation"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "nativeMain-cinterop",
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "nonJvmMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"commonMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "unixMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"nativeMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"androidx.annotation:annotation"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "unixMain-cinterop",
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "webMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"nonJvmMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,191 @@
|
|||||||
|
{
|
||||||
|
"projectStructure": {
|
||||||
|
"formatVersion": "0.3.3",
|
||||||
|
"isPublishedAsRoot": "true",
|
||||||
|
"variants": [
|
||||||
|
{
|
||||||
|
"name": "debugApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "debugRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "releaseApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "releaseRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "desktopApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain",
|
||||||
|
"nonAndroidMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "desktopRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain",
|
||||||
|
"nonAndroidMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "iosArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"iosMain",
|
||||||
|
"appleMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"nonAndroidMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "iosSimulatorArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"iosMain",
|
||||||
|
"appleMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"nonAndroidMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "iosX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"iosMain",
|
||||||
|
"appleMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"nonAndroidMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jsApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain",
|
||||||
|
"nonAndroidMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jsRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain",
|
||||||
|
"nonAndroidMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "macosArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"macosMain",
|
||||||
|
"appleMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"nonAndroidMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "macosX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"macosMain",
|
||||||
|
"appleMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"nonAndroidMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wasmJsApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain",
|
||||||
|
"nonAndroidMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wasmJsRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain",
|
||||||
|
"nonAndroidMain"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"sourceSets": [
|
||||||
|
{
|
||||||
|
"name": "appleMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"nativeMain",
|
||||||
|
"nonAndroidMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "appleMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "commonMain",
|
||||||
|
"dependsOn": [],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "iosMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"appleMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "iosMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "macosMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"appleMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "macosMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "nativeMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"commonMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "nativeMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "nonAndroidMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"commonMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,49 @@
|
|||||||
|
{
|
||||||
|
"projectStructure": {
|
||||||
|
"formatVersion": "0.3.3",
|
||||||
|
"isPublishedAsRoot": "true",
|
||||||
|
"variants": [
|
||||||
|
{
|
||||||
|
"name": "uikitArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"uikitMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "uikitSimArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"uikitMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "uikitX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"uikitMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"sourceSets": [
|
||||||
|
{
|
||||||
|
"name": "commonMain",
|
||||||
|
"dependsOn": [],
|
||||||
|
"moduleDependency": [],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "commonMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "uikitMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"commonMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "uikitMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,207 @@
|
|||||||
|
{
|
||||||
|
"projectStructure": {
|
||||||
|
"formatVersion": "0.3.3",
|
||||||
|
"isPublishedAsRoot": "true",
|
||||||
|
"variants": [
|
||||||
|
{
|
||||||
|
"name": "jsApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jsRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jvmApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jvmRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "linuxArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "linuxX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "macosArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"macosMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "macosX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"macosMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "mingwX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "tvosArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "tvosSimulatorArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "tvosX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "uikitArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"uikitMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "uikitSimArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"uikitMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "uikitX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"uikitMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wasmJsApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wasmJsRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "watchosArm32ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "watchosArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "watchosSimulatorArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "watchosX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"sourceSets": [
|
||||||
|
{
|
||||||
|
"name": "commonMain",
|
||||||
|
"dependsOn": [],
|
||||||
|
"moduleDependency": [
|
||||||
|
"androidx.annotation:annotation"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "darwinMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"nativeMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"androidx.annotation:annotation"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "darwinMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "macosMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"darwinMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"androidx.annotation:annotation"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "macosMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "nativeMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"commonMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"androidx.annotation:annotation"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "nativeMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "uikitMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"darwinMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"androidx.annotation:annotation"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "uikitMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,256 @@
|
|||||||
|
{
|
||||||
|
"projectStructure": {
|
||||||
|
"formatVersion": "0.3.3",
|
||||||
|
"isPublishedAsRoot": "true",
|
||||||
|
"variants": [
|
||||||
|
{
|
||||||
|
"name": "debugApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "debugRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "releaseApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "releaseRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "desktopApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain",
|
||||||
|
"jbMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "desktopRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"jvmMain",
|
||||||
|
"commonMain",
|
||||||
|
"jbMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jsApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain",
|
||||||
|
"jsNativeMain",
|
||||||
|
"jbMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jsRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain",
|
||||||
|
"jsNativeMain",
|
||||||
|
"jbMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "macosArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"macosMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"jsNativeMain",
|
||||||
|
"jbMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "macosX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"macosMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"jsNativeMain",
|
||||||
|
"jbMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "uikitArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"uikitMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"jsNativeMain",
|
||||||
|
"jbMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "uikitSimArm64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"uikitMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"jsNativeMain",
|
||||||
|
"jbMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "uikitX64ApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"uikitMain",
|
||||||
|
"darwinMain",
|
||||||
|
"nativeMain",
|
||||||
|
"commonMain",
|
||||||
|
"jsNativeMain",
|
||||||
|
"jbMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wasmJsApiElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain",
|
||||||
|
"jsNativeMain",
|
||||||
|
"jbMain"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wasmJsRuntimeElements",
|
||||||
|
"sourceSet": [
|
||||||
|
"commonMain",
|
||||||
|
"jsNativeMain",
|
||||||
|
"jbMain"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"sourceSets": [
|
||||||
|
{
|
||||||
|
"name": "commonMain",
|
||||||
|
"dependsOn": [],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.ui:ui-geometry",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.ui:ui-util"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "darwinMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"nativeMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.ui:ui-geometry",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.ui:ui-util"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "darwinMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jbMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"commonMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.ui:ui-geometry",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.ui:ui-util"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jsNativeMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"jbMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.ui:ui-geometry",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.ui:ui-util"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jvmMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"commonMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.ui:ui-geometry",
|
||||||
|
"org.jetbrains.kotlin:kotlin-stdlib",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.ui:ui-util"
|
||||||
|
],
|
||||||
|
"binaryLayout": "klib"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "macosMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"darwinMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.ui:ui-geometry",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.ui:ui-util"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "macosMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "nativeMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"commonMain",
|
||||||
|
"jsNativeMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.ui:ui-geometry",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.ui:ui-util"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "nativeMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "uikitMain",
|
||||||
|
"dependsOn": [
|
||||||
|
"darwinMain"
|
||||||
|
],
|
||||||
|
"moduleDependency": [
|
||||||
|
"org.jetbrains.compose.ui:ui-geometry",
|
||||||
|
"org.jetbrains.compose.annotation-internal:annotation",
|
||||||
|
"org.jetbrains.compose.runtime:runtime",
|
||||||
|
"org.jetbrains.compose.ui:ui-util"
|
||||||
|
],
|
||||||
|
"sourceSetCInteropMetadataDirectory": "uikitMain-cinterop",
|
||||||
|
"binaryLayout": "klib",
|
||||||
|
"hostSpecific": "true"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -6,7 +6,7 @@ import androidx.compose.ui.window.application
|
|||||||
fun main() = application {
|
fun main() = application {
|
||||||
Window(
|
Window(
|
||||||
onCloseRequest = ::exitApplication,
|
onCloseRequest = ::exitApplication,
|
||||||
title = "SClient",
|
title = "sclient",
|
||||||
) {
|
) {
|
||||||
App()
|
App()
|
||||||
}
|
}
|
||||||
|
|||||||
@ -3,7 +3,7 @@
|
|||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>SClient</title>
|
<title>sclient</title>
|
||||||
<link type="text/css" rel="stylesheet" href="styles.css">
|
<link type="text/css" rel="stylesheet" href="styles.css">
|
||||||
<script type="application/javascript" src="composeApp.js"></script>
|
<script type="application/javascript" src="composeApp.js"></script>
|
||||||
</head>
|
</head>
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
rootProject.name = "SClient"
|
rootProject.name = "sclient"
|
||||||
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
|
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
|
||||||
|
|
||||||
pluginManagement {
|
pluginManagement {
|
||||||
|
|||||||
Reference in New Issue
Block a user