From 38c87e0d1c58f0db905423761291a232feec9f75 Mon Sep 17 00:00:00 2001 From: Carlos Martino Date: Wed, 17 Sep 2025 11:31:16 -0300 Subject: [PATCH] Initial commit --- LICENSE | 235 +++++++ README.md | 35 + build.gradle.kts | 7 + build/reports/problems/problems-report.html | 663 ++++++++++++++++++ composeApp/build.gradle.kts | 79 +++ .../resources/ActualResourceCollectors.kt | 38 + .../resources/Drawable0.commonMain.kt | 23 + .../resources/ExpectResourceCollectors.kt | 19 + .../composeapp/generated/resources/Res.kt | 47 ++ .../resources/ActualResourceCollectors.kt | 38 + .../resources/ActualResourceCollectors.kt | 38 + .../drawable/compose-multiplatform.xml | 44 ++ .../commonizedNativeDistributionLocation.txt | 1 + .../kotlin-project-structure-metadata.json | 327 +++++++++ .../kotlin-project-structure-metadata.json | 221 ++++++ .../kotlin-project-structure-metadata.json | 265 +++++++ .../kotlin-project-structure-metadata.json | 383 ++++++++++ .../kotlin-project-structure-metadata.json | 335 +++++++++ .../kotlin-project-structure-metadata.json | 206 ++++++ .../kotlin-project-structure-metadata.json | 418 +++++++++++ .../kotlin-project-structure-metadata.json | 309 ++++++++ .../kotlin-project-structure-metadata.json | 229 ++++++ .../kotlin-project-structure-metadata.json | 301 ++++++++ .../kotlin-project-structure-metadata.json | 283 ++++++++ .../kotlin-project-structure-metadata.json | 386 ++++++++++ .../kotlin-project-structure-metadata.json | 259 +++++++ .../kotlin-project-structure-metadata.json | 454 ++++++++++++ .../kotlin-project-structure-metadata.json | 273 ++++++++ .../kotlin-project-structure-metadata.json | 324 +++++++++ .../kotlin-project-structure-metadata.json | 168 +++++ .../kotlin-project-structure-metadata.json | 185 +++++ .../kotlin-project-structure-metadata.json | 70 ++ .../kotlin-project-structure-metadata.json | 248 +++++++ .../kotlin-project-structure-metadata.json | 339 +++++++++ .../kotlin-project-structure-metadata.json | 168 +++++ .../kotlin-project-structure-metadata.json | 152 ++++ .../kotlin-project-structure-metadata.json | 195 ++++++ .../kotlin-project-structure-metadata.json | 425 +++++++++++ .../kotlin-project-structure-metadata.json | 342 +++++++++ .../kotlin-project-structure-metadata.json | 255 +++++++ .../kotlin-project-structure-metadata.json | 249 +++++++ .../kotlin-project-structure-metadata.json | 333 +++++++++ .../kotlin-project-structure-metadata.json | 144 ++++ .../kotlin-project-structure-metadata.json | 168 +++++ .../kotlin-project-structure-metadata.json | 311 ++++++++ .../kotlin-project-structure-metadata.json | 327 +++++++++ .../kotlin-project-structure-metadata.json | 286 ++++++++ .../kotlin-project-structure-metadata.json | 191 +++++ .../kotlin-project-structure-metadata.json | 257 +++++++ .../kotlin-project-structure-metadata.json | 49 ++ .../kotlin-project-structure-metadata.json | 323 +++++++++ .../kotlin-project-structure-metadata.json | 319 +++++++++ .../kotlin-project-structure-metadata.json | 256 +++++++ .../src/androidMain/AndroidManifest.xml | 22 + .../carlosmartino/triplogic/MainActivity.kt | 25 + .../triplogic/Platform.android.kt | 9 + .../drawable-v24/ic_launcher_foreground.xml | 30 + .../res/drawable/ic_launcher_background.xml | 170 +++++ .../res/mipmap-anydpi-v26/ic_launcher.xml | 5 + .../mipmap-anydpi-v26/ic_launcher_round.xml | 5 + .../res/mipmap-hdpi/ic_launcher.png | Bin 0 -> 3593 bytes .../res/mipmap-hdpi/ic_launcher_round.png | Bin 0 -> 5339 bytes .../res/mipmap-mdpi/ic_launcher.png | Bin 0 -> 2636 bytes .../res/mipmap-mdpi/ic_launcher_round.png | Bin 0 -> 3388 bytes .../res/mipmap-xhdpi/ic_launcher.png | Bin 0 -> 4926 bytes .../res/mipmap-xhdpi/ic_launcher_round.png | Bin 0 -> 7472 bytes .../res/mipmap-xxhdpi/ic_launcher.png | Bin 0 -> 7909 bytes .../res/mipmap-xxhdpi/ic_launcher_round.png | Bin 0 -> 11873 bytes .../res/mipmap-xxxhdpi/ic_launcher.png | Bin 0 -> 10652 bytes .../res/mipmap-xxxhdpi/ic_launcher_round.png | Bin 0 -> 16570 bytes .../src/androidMain/res/values/strings.xml | 3 + .../drawable/compose-multiplatform.xml | 44 ++ .../kotlin/dev/carlosmartino/triplogic/App.kt | 49 ++ .../dev/carlosmartino/triplogic/Greeting.kt | 9 + .../dev/carlosmartino/triplogic/Platform.kt | 7 + .../triplogic/ComposeAppCommonTest.kt | 12 + .../triplogic/MainViewController.kt | 5 + .../carlosmartino/triplogic/Platform.ios.kt | 9 + gradle.properties | 12 + gradle/libs.versions.toml | 35 + gradle/wrapper/gradle-wrapper.jar | Bin 0 -> 43764 bytes gradle/wrapper/gradle-wrapper.properties | 7 + gradlew | 251 +++++++ gradlew.bat | 94 +++ iosApp/Configuration/Config.xcconfig | 7 + iosApp/iosApp.xcodeproj/project.pbxproj | 373 ++++++++++ .../contents.xcworkspacedata | 7 + .../xcschemes/xcschememanagement.plist | 5 + .../xcschemes/iosApp.xcscheme | 32 + .../xcschemes/xcschememanagement.plist | 14 + .../AccentColor.colorset/Contents.json | 11 + .../AppIcon.appiconset/Contents.json | 36 + .../AppIcon.appiconset/app-icon-1024.png | Bin 0 -> 67285 bytes iosApp/iosApp/Assets.xcassets/Contents.json | 6 + iosApp/iosApp/ContentView.swift | 21 + iosApp/iosApp/Info.plist | 8 + .../Preview Assets.xcassets/Contents.json | 6 + iosApp/iosApp/iOSApp.swift | 10 + local.properties | 8 + settings.gradle.kts | 31 + 100 files changed, 13378 insertions(+) create mode 100644 LICENSE create mode 100644 README.md create mode 100644 build.gradle.kts create mode 100644 build/reports/problems/problems-report.html create mode 100644 composeApp/build.gradle.kts create mode 100644 composeApp/build/generated/compose/resourceGenerator/kotlin/androidMainResourceCollectors/triplogic/composeapp/generated/resources/ActualResourceCollectors.kt create mode 100644 composeApp/build/generated/compose/resourceGenerator/kotlin/commonMainResourceAccessors/triplogic/composeapp/generated/resources/Drawable0.commonMain.kt create mode 100644 composeApp/build/generated/compose/resourceGenerator/kotlin/commonMainResourceCollectors/triplogic/composeapp/generated/resources/ExpectResourceCollectors.kt create mode 100644 composeApp/build/generated/compose/resourceGenerator/kotlin/commonResClass/triplogic/composeapp/generated/resources/Res.kt create mode 100644 composeApp/build/generated/compose/resourceGenerator/kotlin/iosArm64MainResourceCollectors/triplogic/composeapp/generated/resources/ActualResourceCollectors.kt create mode 100644 composeApp/build/generated/compose/resourceGenerator/kotlin/iosSimulatorArm64MainResourceCollectors/triplogic/composeapp/generated/resources/ActualResourceCollectors.kt create mode 100644 composeApp/build/generated/compose/resourceGenerator/preparedResources/commonMain/composeResources/drawable/compose-multiplatform.xml create mode 100644 composeApp/build/kotlin/commonizedNativeDistributionLocation.txt create mode 100644 composeApp/build/tmp/.cache/expanded/zip_06b80ec8229d94d28ddee10a8d9390ce/META-INF/kotlin-project-structure-metadata.json create mode 100644 composeApp/build/tmp/.cache/expanded/zip_074f904e992e24a8a26172d0a90872fb/META-INF/kotlin-project-structure-metadata.json create mode 100644 composeApp/build/tmp/.cache/expanded/zip_0ba8e103e27e86eea72cbb8471ab2339/META-INF/kotlin-project-structure-metadata.json create mode 100644 composeApp/build/tmp/.cache/expanded/zip_0d4a49c4b2630cccf093b54c1d45a6cc/META-INF/kotlin-project-structure-metadata.json create mode 100644 composeApp/build/tmp/.cache/expanded/zip_110233fda545fb3bf945e905b3bd83f5/META-INF/kotlin-project-structure-metadata.json create mode 100644 composeApp/build/tmp/.cache/expanded/zip_19bf3680f82f6f248d40aeddbe16e49c/META-INF/kotlin-project-structure-metadata.json create mode 100644 composeApp/build/tmp/.cache/expanded/zip_1bda082b9b3cb1491bfc13a824d95ba9/META-INF/kotlin-project-structure-metadata.json create mode 100644 composeApp/build/tmp/.cache/expanded/zip_1eb1666be9b6ac4b0c6f4738bdc14813/META-INF/kotlin-project-structure-metadata.json create mode 100644 composeApp/build/tmp/.cache/expanded/zip_240f7608768f48d89a51fc1f39bb2896/META-INF/kotlin-project-structure-metadata.json create mode 100644 composeApp/build/tmp/.cache/expanded/zip_30ad8d74e7b183734b238165f75bebfb/META-INF/kotlin-project-structure-metadata.json create mode 100644 composeApp/build/tmp/.cache/expanded/zip_3b469696c12d2405c0c2e19c68f1810c/META-INF/kotlin-project-structure-metadata.json create mode 100644 composeApp/build/tmp/.cache/expanded/zip_7174a1e8629590de1621d14298b5e788/META-INF/kotlin-project-structure-metadata.json create mode 100644 composeApp/build/tmp/.cache/expanded/zip_7359d2ef7f7b4fed68af66c5ebbb0bd6/META-INF/kotlin-project-structure-metadata.json create mode 100644 composeApp/build/tmp/.cache/expanded/zip_769f0653de234bce8bc738c7392ca601/META-INF/kotlin-project-structure-metadata.json create mode 100644 composeApp/build/tmp/.cache/expanded/zip_7b1e2dbdc628dc25022d24d5609a4ad8/META-INF/kotlin-project-structure-metadata.json create mode 100644 composeApp/build/tmp/.cache/expanded/zip_80dccb6b55fc164d0b558fc848959ea7/META-INF/kotlin-project-structure-metadata.json create mode 100644 composeApp/build/tmp/.cache/expanded/zip_850de10159c05374ba5e4117dc32567d/META-INF/kotlin-project-structure-metadata.json create mode 100644 composeApp/build/tmp/.cache/expanded/zip_8c8382026b57a9b73db85366b49f355c/META-INF/kotlin-project-structure-metadata.json create mode 100644 composeApp/build/tmp/.cache/expanded/zip_8d051b7095b0f645ef16cb72e62190b5/META-INF/kotlin-project-structure-metadata.json create mode 100644 composeApp/build/tmp/.cache/expanded/zip_94681404496a4489c6baaa3fcc7802d9/META-INF/kotlin-project-structure-metadata.json create mode 100644 composeApp/build/tmp/.cache/expanded/zip_96f1883b06299eda64c6b5da4552cdb0/META-INF/kotlin-project-structure-metadata.json create mode 100644 composeApp/build/tmp/.cache/expanded/zip_9735b30a9b0d11348787911ecada2b14/META-INF/kotlin-project-structure-metadata.json create mode 100644 composeApp/build/tmp/.cache/expanded/zip_9b6b423f1d77370192d2365caf0ad06c/META-INF/kotlin-project-structure-metadata.json create mode 100644 composeApp/build/tmp/.cache/expanded/zip_9ba25079516ff8806050fd3c7b487830/META-INF/kotlin-project-structure-metadata.json create mode 100644 composeApp/build/tmp/.cache/expanded/zip_a786962cfd6af94db065e1a94a8f9561/META-INF/kotlin-project-structure-metadata.json create mode 100644 composeApp/build/tmp/.cache/expanded/zip_aac2523fec29df7ad9b6784d00b56712/META-INF/kotlin-project-structure-metadata.json create mode 100644 composeApp/build/tmp/.cache/expanded/zip_b15e3a25f017fab51a38b93623361ab7/META-INF/kotlin-project-structure-metadata.json create mode 100644 composeApp/build/tmp/.cache/expanded/zip_b674459d06ec943f41a47530cc51e2e2/META-INF/kotlin-project-structure-metadata.json create mode 100644 composeApp/build/tmp/.cache/expanded/zip_be72bb89bb6643f6ba03e21c56459817/META-INF/kotlin-project-structure-metadata.json create mode 100644 composeApp/build/tmp/.cache/expanded/zip_bf26b003b7b6b35b13e47c7e6b166e5e/META-INF/kotlin-project-structure-metadata.json create mode 100644 composeApp/build/tmp/.cache/expanded/zip_c865adf635955e8e72645b1f1c380a99/META-INF/kotlin-project-structure-metadata.json create mode 100644 composeApp/build/tmp/.cache/expanded/zip_d6d559b6b81837bf53066adcfc330595/META-INF/kotlin-project-structure-metadata.json create mode 100644 composeApp/build/tmp/.cache/expanded/zip_df6d852db9b3d3e6b84c9af89bf98d15/META-INF/kotlin-project-structure-metadata.json create mode 100644 composeApp/build/tmp/.cache/expanded/zip_e17eaf8f85f9b47cad90e02397741c0d/META-INF/kotlin-project-structure-metadata.json create mode 100644 composeApp/build/tmp/.cache/expanded/zip_e2eafe826fe79d5a930cdf38ba87639c/META-INF/kotlin-project-structure-metadata.json create mode 100644 composeApp/build/tmp/.cache/expanded/zip_e3ba6acb4862818f6408386f49b11c28/META-INF/kotlin-project-structure-metadata.json create mode 100644 composeApp/build/tmp/.cache/expanded/zip_e549716c7cf992dc0f6f11188646aa15/META-INF/kotlin-project-structure-metadata.json create mode 100644 composeApp/build/tmp/.cache/expanded/zip_f0f301445155781f9a42f3e850433374/META-INF/kotlin-project-structure-metadata.json create mode 100644 composeApp/build/tmp/.cache/expanded/zip_f4b70111db6f83f60ac6ab9038b08d88/META-INF/kotlin-project-structure-metadata.json create mode 100644 composeApp/build/tmp/.cache/expanded/zip_f67e8f3c0084dc9d854416c25afa68b7/META-INF/kotlin-project-structure-metadata.json create mode 100644 composeApp/src/androidMain/AndroidManifest.xml create mode 100644 composeApp/src/androidMain/kotlin/dev/carlosmartino/triplogic/MainActivity.kt create mode 100644 composeApp/src/androidMain/kotlin/dev/carlosmartino/triplogic/Platform.android.kt create mode 100644 composeApp/src/androidMain/res/drawable-v24/ic_launcher_foreground.xml create mode 100644 composeApp/src/androidMain/res/drawable/ic_launcher_background.xml create mode 100644 composeApp/src/androidMain/res/mipmap-anydpi-v26/ic_launcher.xml create mode 100644 composeApp/src/androidMain/res/mipmap-anydpi-v26/ic_launcher_round.xml create mode 100644 composeApp/src/androidMain/res/mipmap-hdpi/ic_launcher.png create mode 100644 composeApp/src/androidMain/res/mipmap-hdpi/ic_launcher_round.png create mode 100644 composeApp/src/androidMain/res/mipmap-mdpi/ic_launcher.png create mode 100644 composeApp/src/androidMain/res/mipmap-mdpi/ic_launcher_round.png create mode 100644 composeApp/src/androidMain/res/mipmap-xhdpi/ic_launcher.png create mode 100644 composeApp/src/androidMain/res/mipmap-xhdpi/ic_launcher_round.png create mode 100644 composeApp/src/androidMain/res/mipmap-xxhdpi/ic_launcher.png create mode 100644 composeApp/src/androidMain/res/mipmap-xxhdpi/ic_launcher_round.png create mode 100644 composeApp/src/androidMain/res/mipmap-xxxhdpi/ic_launcher.png create mode 100644 composeApp/src/androidMain/res/mipmap-xxxhdpi/ic_launcher_round.png create mode 100644 composeApp/src/androidMain/res/values/strings.xml create mode 100644 composeApp/src/commonMain/composeResources/drawable/compose-multiplatform.xml create mode 100644 composeApp/src/commonMain/kotlin/dev/carlosmartino/triplogic/App.kt create mode 100644 composeApp/src/commonMain/kotlin/dev/carlosmartino/triplogic/Greeting.kt create mode 100644 composeApp/src/commonMain/kotlin/dev/carlosmartino/triplogic/Platform.kt create mode 100644 composeApp/src/commonTest/kotlin/dev/carlosmartino/triplogic/ComposeAppCommonTest.kt create mode 100644 composeApp/src/iosMain/kotlin/dev/carlosmartino/triplogic/MainViewController.kt create mode 100644 composeApp/src/iosMain/kotlin/dev/carlosmartino/triplogic/Platform.ios.kt create mode 100644 gradle.properties create mode 100644 gradle/libs.versions.toml create mode 100644 gradle/wrapper/gradle-wrapper.jar create mode 100644 gradle/wrapper/gradle-wrapper.properties create mode 100755 gradlew create mode 100644 gradlew.bat create mode 100644 iosApp/Configuration/Config.xcconfig create mode 100644 iosApp/iosApp.xcodeproj/project.pbxproj create mode 100644 iosApp/iosApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata create mode 100644 iosApp/iosApp.xcodeproj/project.xcworkspace/xcuserdata/imcarlost.xcuserdatad/xcschemes/xcschememanagement.plist create mode 100644 iosApp/iosApp.xcodeproj/xcuserdata/imcarlost.xcuserdatad/xcschemes/iosApp.xcscheme create mode 100644 iosApp/iosApp.xcodeproj/xcuserdata/imcarlost.xcuserdatad/xcschemes/xcschememanagement.plist create mode 100644 iosApp/iosApp/Assets.xcassets/AccentColor.colorset/Contents.json create mode 100644 iosApp/iosApp/Assets.xcassets/AppIcon.appiconset/Contents.json create mode 100644 iosApp/iosApp/Assets.xcassets/AppIcon.appiconset/app-icon-1024.png create mode 100644 iosApp/iosApp/Assets.xcassets/Contents.json create mode 100644 iosApp/iosApp/ContentView.swift create mode 100644 iosApp/iosApp/Info.plist create mode 100644 iosApp/iosApp/Preview Content/Preview Assets.xcassets/Contents.json create mode 100644 iosApp/iosApp/iOSApp.swift create mode 100644 local.properties create mode 100644 settings.gradle.kts diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..fdf9cd0 --- /dev/null +++ b/LICENSE @@ -0,0 +1,235 @@ +GNU AFFERO GENERAL PUBLIC LICENSE +Version 3, 19 November 2007 + +Copyright (C) 2007 Free Software Foundation, Inc. + +Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. + + Preamble + +The GNU Affero General Public License is a free, copyleft license for software and other kinds of works, specifically designed to ensure cooperation with the community in the case of network server software. + +The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, our General Public Licenses are intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. + +When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things. + +Developers that use our General Public Licenses protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License which gives you legal permission to copy, distribute and/or modify the software. + +A secondary benefit of defending all users' freedom is that improvements made in alternate versions of the program, if they receive widespread use, become available for other developers to incorporate. Many developers of free software are heartened and encouraged by the resulting cooperation. However, in the case of software used on network servers, this result may fail to come about. The GNU General Public License permits making a modified version and letting the public access it on a server without ever releasing its source code to the public. + +The GNU Affero General Public License is designed specifically to ensure that, in such cases, the modified source code becomes available to the community. It requires the operator of a network server to provide the source code of the modified version running there to the users of that server. Therefore, public use of a modified version, on a publicly accessible server, gives the public access to the source code of the modified version. + +An older license, called the Affero General Public License and published by Affero, was designed to accomplish similar goals. This is a different license, not a version of the Affero GPL, but Affero has released a new version of the Affero GPL which permits relicensing under this license. + +The precise terms and conditions for copying, distribution and modification follow. + + TERMS AND CONDITIONS + +0. Definitions. + +"This License" refers to version 3 of the GNU Affero General Public License. + +"Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. + +"The Program" refers to any copyrightable work licensed under this License. Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals or organizations. + +To "modify" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a "modified version" of the earlier work or a work "based on" the earlier work. + +A "covered work" means either the unmodified Program or a work based on the Program. + +To "propagate" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. + +To "convey" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. + +An interactive user interface displays "Appropriate Legal Notices" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. + +1. Source Code. +The "source code" for a work means the preferred form of the work for making modifications to it. "Object code" means any non-source form of a work. + +A "Standard Interface" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. + +The "System Libraries" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A "Major Component", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. + +The "Corresponding Source" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those +subprograms and other parts of the work. + +The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. + +The Corresponding Source for a work in source code form is that same work. + +2. Basic Permissions. +All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. + +You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. + +Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. + +3. Protecting Users' Legal Rights From Anti-Circumvention Law. +No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. + +When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. + +4. Conveying Verbatim Copies. +You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. + +You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. + +5. Conveying Modified Source Versions. +You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to "keep intact all notices". + + c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. + +A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an "aggregate" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. + +6. Conveying Non-Source Forms. +You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: + + a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. + + d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. + +A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. + +A "User Product" is either (1) a "consumer product", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, "normally used" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. + +"Installation Information" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. + +If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). + +The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. + +Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. + +7. Additional Terms. +"Additional permissions" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. + +When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. + +Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or authors of the material; or + + e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. + +All other non-permissive additional terms are considered "further restrictions" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. + +If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. + +Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. + +8. Termination. + +You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). + +However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. + +Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. + +Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. + +9. Acceptance Not Required for Having Copies. + +You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. + +10. Automatic Licensing of Downstream Recipients. + +Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. + +An "entity transaction" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. + +You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. + +11. Patents. + +A "contributor" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's "contributor version". + +A contributor's "essential patent claims" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, "control" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. + +Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. + +In the following three paragraphs, a "patent license" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To "grant" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. + +If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. + +If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. + +A patent license is "discriminatory" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. + +Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. + +12. No Surrender of Others' Freedom. + +If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. + +13. Remote Network Interaction; Use with the GNU General Public License. + +Notwithstanding any other provision of this License, if you modify the Program, your modified version must prominently offer all users interacting with it remotely through a computer network (if your version supports such interaction) an opportunity to receive the Corresponding Source of your version by providing access to the Corresponding Source from a network server at no charge, through some standard or customary means of facilitating copying of software. This Corresponding Source shall include the Corresponding Source for any work covered by version 3 of the GNU General Public License that is incorporated pursuant to the following paragraph. + +Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the work with which it is combined will remain governed by version 3 of the GNU General Public License. + +14. Revised Versions of this License. + +The Free Software Foundation may publish revised and/or new versions of the GNU Affero General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. + +Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU Affero General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU Affero General Public License, you may choose any version ever published by the Free Software Foundation. + +If the Program specifies that a proxy can decide which future versions of the GNU Affero General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. + +Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. + +15. Disclaimer of Warranty. + +THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + +16. Limitation of Liability. + +IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + +17. Interpretation of Sections 15 and 16. + +If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. + +END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + +If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. + +To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. + + triplogic + Copyright (C) 2025 imcarlost + + This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. + + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + +If your software can interact with users remotely through a computer network, you should also make sure that it provides a way for users to get its source. For example, if your program is a web application, its interface could display a "Source" link that leads users to an archive of the code. There are many ways you could offer source, and different solutions will be better for different programs; see section 13 for the specific requirements. + +You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU AGPL, see . diff --git a/README.md b/README.md new file mode 100644 index 0000000..7e7d049 --- /dev/null +++ b/README.md @@ -0,0 +1,35 @@ +This is a Kotlin Multiplatform project targeting Android, iOS. + +* [/composeApp](./composeApp/src) is for code that will be shared across your Compose Multiplatform applications. + It contains several subfolders: + - [commonMain](./composeApp/src/commonMain/kotlin) is for code that’s common for all targets. + - Other folders are for Kotlin code that will be compiled for only the platform indicated in the folder name. + For example, if you want to use Apple’s CoreCrypto for the iOS part of your Kotlin app, + the [iosMain](./composeApp/src/iosMain/kotlin) folder would be the right place for such calls. + Similarly, if you want to edit the Desktop (JVM) specific part, the [jvmMain](./composeApp/src/jvmMain/kotlin) + folder is the appropriate location. + +* [/iosApp](./iosApp/iosApp) contains iOS applications. Even if you’re sharing your UI with Compose Multiplatform, + you need this entry point for your iOS app. This is also where you should add SwiftUI code for your project. + +### Build and Run Android Application + +To build and run the development version of the Android app, use the run configuration from the run widget +in your IDE’s toolbar or build it directly from the terminal: +- on macOS/Linux + ```shell + ./gradlew :composeApp:assembleDebug + ``` +- on Windows + ```shell + .\gradlew.bat :composeApp:assembleDebug + ``` + +### Build and Run iOS Application + +To build and run the development version of the iOS app, use the run configuration from the run widget +in your IDE’s toolbar or open the [/iosApp](./iosApp) directory in Xcode and run it from there. + +--- + +Learn more about [Kotlin Multiplatform](https://www.jetbrains.com/help/kotlin-multiplatform-dev/get-started.html)… \ No newline at end of file diff --git a/build.gradle.kts b/build.gradle.kts new file mode 100644 index 0000000..430c60f --- /dev/null +++ b/build.gradle.kts @@ -0,0 +1,7 @@ +plugins { + alias(libs.plugins.androidApplication) apply false + alias(libs.plugins.androidLibrary) apply false + alias(libs.plugins.composeMultiplatform) apply false + alias(libs.plugins.composeCompiler) apply false + alias(libs.plugins.kotlinMultiplatform) apply false +} \ No newline at end of file diff --git a/build/reports/problems/problems-report.html b/build/reports/problems/problems-report.html new file mode 100644 index 0000000..2ab4ce8 --- /dev/null +++ b/build/reports/problems/problems-report.html @@ -0,0 +1,663 @@ + + + + + + + + + + + + + Gradle Configuration Cache + + + +
+ +
+ Loading... +
+ + + + + + diff --git a/composeApp/build.gradle.kts b/composeApp/build.gradle.kts new file mode 100644 index 0000000..68a8d9b --- /dev/null +++ b/composeApp/build.gradle.kts @@ -0,0 +1,79 @@ +import org.jetbrains.compose.desktop.application.dsl.TargetFormat +import org.jetbrains.kotlin.gradle.dsl.JvmTarget + +plugins { + alias(libs.plugins.kotlinMultiplatform) + alias(libs.plugins.androidApplication) + alias(libs.plugins.composeMultiplatform) + alias(libs.plugins.composeCompiler) +} + +kotlin { + androidTarget { + compilerOptions { + jvmTarget.set(JvmTarget.JVM_11) + } + } + + listOf( + iosArm64(), + iosSimulatorArm64() + ).forEach { iosTarget -> + iosTarget.binaries.framework { + baseName = "ComposeApp" + isStatic = true + } + } + + sourceSets { + androidMain.dependencies { + implementation(compose.preview) + implementation(libs.androidx.activity.compose) + } + commonMain.dependencies { + implementation(compose.runtime) + implementation(compose.foundation) + implementation(compose.material3) + implementation(compose.ui) + implementation(compose.components.resources) + implementation(compose.components.uiToolingPreview) + implementation(libs.androidx.lifecycle.viewmodelCompose) + implementation(libs.androidx.lifecycle.runtimeCompose) + } + commonTest.dependencies { + implementation(libs.kotlin.test) + } + } +} + +android { + namespace = "dev.carlosmartino.triplogic" + compileSdk = libs.versions.android.compileSdk.get().toInt() + + defaultConfig { + applicationId = "dev.carlosmartino.triplogic" + minSdk = libs.versions.android.minSdk.get().toInt() + targetSdk = libs.versions.android.targetSdk.get().toInt() + versionCode = 1 + versionName = "1.0" + } + packaging { + resources { + excludes += "/META-INF/{AL2.0,LGPL2.1}" + } + } + buildTypes { + getByName("release") { + isMinifyEnabled = false + } + } + compileOptions { + sourceCompatibility = JavaVersion.VERSION_11 + targetCompatibility = JavaVersion.VERSION_11 + } +} + +dependencies { + debugImplementation(compose.uiTooling) +} + diff --git a/composeApp/build/generated/compose/resourceGenerator/kotlin/androidMainResourceCollectors/triplogic/composeapp/generated/resources/ActualResourceCollectors.kt b/composeApp/build/generated/compose/resourceGenerator/kotlin/androidMainResourceCollectors/triplogic/composeapp/generated/resources/ActualResourceCollectors.kt new file mode 100644 index 0000000..a708e75 --- /dev/null +++ b/composeApp/build/generated/compose/resourceGenerator/kotlin/androidMainResourceCollectors/triplogic/composeapp/generated/resources/ActualResourceCollectors.kt @@ -0,0 +1,38 @@ +@file:OptIn(org.jetbrains.compose.resources.InternalResourceApi::class) + +package triplogic.composeapp.generated.resources + +import kotlin.OptIn +import kotlin.String +import kotlin.collections.Map +import org.jetbrains.compose.resources.DrawableResource +import org.jetbrains.compose.resources.FontResource +import org.jetbrains.compose.resources.PluralStringResource +import org.jetbrains.compose.resources.StringArrayResource +import org.jetbrains.compose.resources.StringResource + +internal actual val Res.allDrawableResources: Map by lazy { + val map = mutableMapOf() + _collectCommonMainDrawable0Resources(map) + return@lazy map +} + +internal actual val Res.allStringResources: Map by lazy { + val map = mutableMapOf() + return@lazy map +} + +internal actual val Res.allStringArrayResources: Map by lazy { + val map = mutableMapOf() + return@lazy map +} + +internal actual val Res.allPluralStringResources: Map by lazy { + val map = mutableMapOf() + return@lazy map +} + +internal actual val Res.allFontResources: Map by lazy { + val map = mutableMapOf() + return@lazy map +} diff --git a/composeApp/build/generated/compose/resourceGenerator/kotlin/commonMainResourceAccessors/triplogic/composeapp/generated/resources/Drawable0.commonMain.kt b/composeApp/build/generated/compose/resourceGenerator/kotlin/commonMainResourceAccessors/triplogic/composeapp/generated/resources/Drawable0.commonMain.kt new file mode 100644 index 0000000..4fc52d2 --- /dev/null +++ b/composeApp/build/generated/compose/resourceGenerator/kotlin/commonMainResourceAccessors/triplogic/composeapp/generated/resources/Drawable0.commonMain.kt @@ -0,0 +1,23 @@ +@file:OptIn(InternalResourceApi::class) + +package triplogic.composeapp.generated.resources + +import kotlin.OptIn +import kotlin.String +import kotlin.collections.MutableMap +import org.jetbrains.compose.resources.DrawableResource +import org.jetbrains.compose.resources.InternalResourceApi +import org.jetbrains.compose.resources.ResourceItem + +private const val MD: String = "composeResources/triplogic.composeapp.generated.resources/" + +internal val Res.drawable.compose_multiplatform: DrawableResource by lazy { + DrawableResource("drawable:compose_multiplatform", setOf( + ResourceItem(setOf(), "${MD}drawable/compose-multiplatform.xml", -1, -1), + )) + } + +@InternalResourceApi +internal fun _collectCommonMainDrawable0Resources(map: MutableMap) { + map.put("compose_multiplatform", Res.drawable.compose_multiplatform) +} diff --git a/composeApp/build/generated/compose/resourceGenerator/kotlin/commonMainResourceCollectors/triplogic/composeapp/generated/resources/ExpectResourceCollectors.kt b/composeApp/build/generated/compose/resourceGenerator/kotlin/commonMainResourceCollectors/triplogic/composeapp/generated/resources/ExpectResourceCollectors.kt new file mode 100644 index 0000000..46b64ed --- /dev/null +++ b/composeApp/build/generated/compose/resourceGenerator/kotlin/commonMainResourceCollectors/triplogic/composeapp/generated/resources/ExpectResourceCollectors.kt @@ -0,0 +1,19 @@ +package triplogic.composeapp.generated.resources + +import kotlin.String +import kotlin.collections.Map +import org.jetbrains.compose.resources.DrawableResource +import org.jetbrains.compose.resources.FontResource +import org.jetbrains.compose.resources.PluralStringResource +import org.jetbrains.compose.resources.StringArrayResource +import org.jetbrains.compose.resources.StringResource + +internal expect val Res.allDrawableResources: Map + +internal expect val Res.allStringResources: Map + +internal expect val Res.allStringArrayResources: Map + +internal expect val Res.allPluralStringResources: Map + +internal expect val Res.allFontResources: Map diff --git a/composeApp/build/generated/compose/resourceGenerator/kotlin/commonResClass/triplogic/composeapp/generated/resources/Res.kt b/composeApp/build/generated/compose/resourceGenerator/kotlin/commonResClass/triplogic/composeapp/generated/resources/Res.kt new file mode 100644 index 0000000..d1c3dea --- /dev/null +++ b/composeApp/build/generated/compose/resourceGenerator/kotlin/commonResClass/triplogic/composeapp/generated/resources/Res.kt @@ -0,0 +1,47 @@ +@file:OptIn(InternalResourceApi::class) +@file:Suppress( + "RedundantVisibilityModifier", + "REDUNDANT_VISIBILITY_MODIFIER", +) + +package triplogic.composeapp.generated.resources + +import kotlin.ByteArray +import kotlin.OptIn +import kotlin.String +import kotlin.Suppress +import org.jetbrains.compose.resources.InternalResourceApi +import org.jetbrains.compose.resources.getResourceUri +import org.jetbrains.compose.resources.readResourceBytes + +internal object Res { + /** + * Reads the content of the resource file at the specified path and returns it as a byte array. + * + * Example: `val bytes = Res.readBytes("files/key.bin")` + * + * @param path The path of the file to read in the compose resource's directory. + * @return The content of the file as a byte array. + */ + public suspend fun readBytes(path: String): ByteArray = readResourceBytes("composeResources/triplogic.composeapp.generated.resources/" + path) + + /** + * Returns the URI string of the resource file at the specified path. + * + * Example: `val uri = Res.getUri("files/key.bin")` + * + * @param path The path of the file in the compose resource's directory. + * @return The URI string of the file. + */ + public fun getUri(path: String): String = getResourceUri("composeResources/triplogic.composeapp.generated.resources/" + path) + + public object drawable + + public object string + + public object array + + public object plurals + + public object font +} diff --git a/composeApp/build/generated/compose/resourceGenerator/kotlin/iosArm64MainResourceCollectors/triplogic/composeapp/generated/resources/ActualResourceCollectors.kt b/composeApp/build/generated/compose/resourceGenerator/kotlin/iosArm64MainResourceCollectors/triplogic/composeapp/generated/resources/ActualResourceCollectors.kt new file mode 100644 index 0000000..a708e75 --- /dev/null +++ b/composeApp/build/generated/compose/resourceGenerator/kotlin/iosArm64MainResourceCollectors/triplogic/composeapp/generated/resources/ActualResourceCollectors.kt @@ -0,0 +1,38 @@ +@file:OptIn(org.jetbrains.compose.resources.InternalResourceApi::class) + +package triplogic.composeapp.generated.resources + +import kotlin.OptIn +import kotlin.String +import kotlin.collections.Map +import org.jetbrains.compose.resources.DrawableResource +import org.jetbrains.compose.resources.FontResource +import org.jetbrains.compose.resources.PluralStringResource +import org.jetbrains.compose.resources.StringArrayResource +import org.jetbrains.compose.resources.StringResource + +internal actual val Res.allDrawableResources: Map by lazy { + val map = mutableMapOf() + _collectCommonMainDrawable0Resources(map) + return@lazy map +} + +internal actual val Res.allStringResources: Map by lazy { + val map = mutableMapOf() + return@lazy map +} + +internal actual val Res.allStringArrayResources: Map by lazy { + val map = mutableMapOf() + return@lazy map +} + +internal actual val Res.allPluralStringResources: Map by lazy { + val map = mutableMapOf() + return@lazy map +} + +internal actual val Res.allFontResources: Map by lazy { + val map = mutableMapOf() + return@lazy map +} diff --git a/composeApp/build/generated/compose/resourceGenerator/kotlin/iosSimulatorArm64MainResourceCollectors/triplogic/composeapp/generated/resources/ActualResourceCollectors.kt b/composeApp/build/generated/compose/resourceGenerator/kotlin/iosSimulatorArm64MainResourceCollectors/triplogic/composeapp/generated/resources/ActualResourceCollectors.kt new file mode 100644 index 0000000..a708e75 --- /dev/null +++ b/composeApp/build/generated/compose/resourceGenerator/kotlin/iosSimulatorArm64MainResourceCollectors/triplogic/composeapp/generated/resources/ActualResourceCollectors.kt @@ -0,0 +1,38 @@ +@file:OptIn(org.jetbrains.compose.resources.InternalResourceApi::class) + +package triplogic.composeapp.generated.resources + +import kotlin.OptIn +import kotlin.String +import kotlin.collections.Map +import org.jetbrains.compose.resources.DrawableResource +import org.jetbrains.compose.resources.FontResource +import org.jetbrains.compose.resources.PluralStringResource +import org.jetbrains.compose.resources.StringArrayResource +import org.jetbrains.compose.resources.StringResource + +internal actual val Res.allDrawableResources: Map by lazy { + val map = mutableMapOf() + _collectCommonMainDrawable0Resources(map) + return@lazy map +} + +internal actual val Res.allStringResources: Map by lazy { + val map = mutableMapOf() + return@lazy map +} + +internal actual val Res.allStringArrayResources: Map by lazy { + val map = mutableMapOf() + return@lazy map +} + +internal actual val Res.allPluralStringResources: Map by lazy { + val map = mutableMapOf() + return@lazy map +} + +internal actual val Res.allFontResources: Map by lazy { + val map = mutableMapOf() + return@lazy map +} diff --git a/composeApp/build/generated/compose/resourceGenerator/preparedResources/commonMain/composeResources/drawable/compose-multiplatform.xml b/composeApp/build/generated/compose/resourceGenerator/preparedResources/commonMain/composeResources/drawable/compose-multiplatform.xml new file mode 100644 index 0000000..1ffc948 --- /dev/null +++ b/composeApp/build/generated/compose/resourceGenerator/preparedResources/commonMain/composeResources/drawable/compose-multiplatform.xml @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/composeApp/build/kotlin/commonizedNativeDistributionLocation.txt b/composeApp/build/kotlin/commonizedNativeDistributionLocation.txt new file mode 100644 index 0000000..60f55ac --- /dev/null +++ b/composeApp/build/kotlin/commonizedNativeDistributionLocation.txt @@ -0,0 +1 @@ +/Users/imcarlost/.konan/kotlin-native-prebuilt-macos-aarch64-2.2.10/klib/commonized/2.2.10 \ No newline at end of file diff --git a/composeApp/build/tmp/.cache/expanded/zip_06b80ec8229d94d28ddee10a8d9390ce/META-INF/kotlin-project-structure-metadata.json b/composeApp/build/tmp/.cache/expanded/zip_06b80ec8229d94d28ddee10a8d9390ce/META-INF/kotlin-project-structure-metadata.json new file mode 100644 index 0000000..a69b612 --- /dev/null +++ b/composeApp/build/tmp/.cache/expanded/zip_06b80ec8229d94d28ddee10a8d9390ce/META-INF/kotlin-project-structure-metadata.json @@ -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" + } + ] + } +} \ No newline at end of file diff --git a/composeApp/build/tmp/.cache/expanded/zip_074f904e992e24a8a26172d0a90872fb/META-INF/kotlin-project-structure-metadata.json b/composeApp/build/tmp/.cache/expanded/zip_074f904e992e24a8a26172d0a90872fb/META-INF/kotlin-project-structure-metadata.json new file mode 100644 index 0000000..b154ee5 --- /dev/null +++ b/composeApp/build/tmp/.cache/expanded/zip_074f904e992e24a8a26172d0a90872fb/META-INF/kotlin-project-structure-metadata.json @@ -0,0 +1,221 @@ +{ + "projectStructure": { + "formatVersion": "0.3.3", + "isPublishedAsRoot": "true", + "variants": [ + { + "name": "jsApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "jsRuntimeElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "jvmApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "jvmRuntimeElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "linuxArm64ApiElements", + "sourceSet": [ + "linuxMain", + "nativeMain", + "commonMain" + ] + }, + { + "name": "linuxX64ApiElements", + "sourceSet": [ + "linuxMain", + "nativeMain", + "commonMain" + ] + }, + { + "name": "macosArm64ApiElements", + "sourceSet": [ + "macosMain", + "darwinMain", + "nativeMain", + "commonMain" + ] + }, + { + "name": "macosX64ApiElements", + "sourceSet": [ + "macosMain", + "darwinMain", + "nativeMain", + "commonMain" + ] + }, + { + "name": "mingwX64ApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "tvosArm64ApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "tvosSimulatorArm64ApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "tvosX64ApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "uikitArm64ApiElements", + "sourceSet": [ + "uikitMain", + "darwinMain", + "nativeMain", + "commonMain" + ] + }, + { + "name": "uikitSimArm64ApiElements", + "sourceSet": [ + "uikitMain", + "darwinMain", + "nativeMain", + "commonMain" + ] + }, + { + "name": "uikitX64ApiElements", + "sourceSet": [ + "uikitMain", + "darwinMain", + "nativeMain", + "commonMain" + ] + }, + { + "name": "wasmJsApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "wasmJsRuntimeElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "watchosArm32ApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "watchosArm64ApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "watchosSimulatorArm64ApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "watchosX64ApiElements", + "sourceSet": [ + "commonMain" + ] + } + ], + "sourceSets": [ + { + "name": "commonMain", + "dependsOn": [], + "moduleDependency": [ + "androidx.annotation:annotation" + ], + "binaryLayout": "klib" + }, + { + "name": "darwinMain", + "dependsOn": [ + "nativeMain" + ], + "moduleDependency": [ + "androidx.annotation:annotation" + ], + "sourceSetCInteropMetadataDirectory": "darwinMain-cinterop", + "binaryLayout": "klib", + "hostSpecific": "true" + }, + { + "name": "linuxMain", + "dependsOn": [ + "nativeMain" + ], + "moduleDependency": [ + "androidx.annotation:annotation" + ], + "sourceSetCInteropMetadataDirectory": "linuxMain-cinterop", + "binaryLayout": "klib" + }, + { + "name": "macosMain", + "dependsOn": [ + "darwinMain" + ], + "moduleDependency": [ + "androidx.annotation:annotation" + ], + "sourceSetCInteropMetadataDirectory": "macosMain-cinterop", + "binaryLayout": "klib", + "hostSpecific": "true" + }, + { + "name": "nativeMain", + "dependsOn": [ + "commonMain" + ], + "moduleDependency": [ + "androidx.annotation:annotation" + ], + "sourceSetCInteropMetadataDirectory": "nativeMain-cinterop", + "binaryLayout": "klib" + }, + { + "name": "uikitMain", + "dependsOn": [ + "darwinMain" + ], + "moduleDependency": [ + "androidx.annotation:annotation" + ], + "sourceSetCInteropMetadataDirectory": "uikitMain-cinterop", + "binaryLayout": "klib", + "hostSpecific": "true" + } + ] + } +} \ No newline at end of file diff --git a/composeApp/build/tmp/.cache/expanded/zip_0ba8e103e27e86eea72cbb8471ab2339/META-INF/kotlin-project-structure-metadata.json b/composeApp/build/tmp/.cache/expanded/zip_0ba8e103e27e86eea72cbb8471ab2339/META-INF/kotlin-project-structure-metadata.json new file mode 100644 index 0000000..d9ded36 --- /dev/null +++ b/composeApp/build/tmp/.cache/expanded/zip_0ba8e103e27e86eea72cbb8471ab2339/META-INF/kotlin-project-structure-metadata.json @@ -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" + } + ] + } +} \ No newline at end of file diff --git a/composeApp/build/tmp/.cache/expanded/zip_0d4a49c4b2630cccf093b54c1d45a6cc/META-INF/kotlin-project-structure-metadata.json b/composeApp/build/tmp/.cache/expanded/zip_0d4a49c4b2630cccf093b54c1d45a6cc/META-INF/kotlin-project-structure-metadata.json new file mode 100644 index 0000000..e55b43f --- /dev/null +++ b/composeApp/build/tmp/.cache/expanded/zip_0d4a49c4b2630cccf093b54c1d45a6cc/META-INF/kotlin-project-structure-metadata.json @@ -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" + } + ] + } +} \ No newline at end of file diff --git a/composeApp/build/tmp/.cache/expanded/zip_110233fda545fb3bf945e905b3bd83f5/META-INF/kotlin-project-structure-metadata.json b/composeApp/build/tmp/.cache/expanded/zip_110233fda545fb3bf945e905b3bd83f5/META-INF/kotlin-project-structure-metadata.json new file mode 100644 index 0000000..69a6183 --- /dev/null +++ b/composeApp/build/tmp/.cache/expanded/zip_110233fda545fb3bf945e905b3bd83f5/META-INF/kotlin-project-structure-metadata.json @@ -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" + } + ] + } +} \ No newline at end of file diff --git a/composeApp/build/tmp/.cache/expanded/zip_19bf3680f82f6f248d40aeddbe16e49c/META-INF/kotlin-project-structure-metadata.json b/composeApp/build/tmp/.cache/expanded/zip_19bf3680f82f6f248d40aeddbe16e49c/META-INF/kotlin-project-structure-metadata.json new file mode 100644 index 0000000..a880b7b --- /dev/null +++ b/composeApp/build/tmp/.cache/expanded/zip_19bf3680f82f6f248d40aeddbe16e49c/META-INF/kotlin-project-structure-metadata.json @@ -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" + } + ] + } +} \ No newline at end of file diff --git a/composeApp/build/tmp/.cache/expanded/zip_1bda082b9b3cb1491bfc13a824d95ba9/META-INF/kotlin-project-structure-metadata.json b/composeApp/build/tmp/.cache/expanded/zip_1bda082b9b3cb1491bfc13a824d95ba9/META-INF/kotlin-project-structure-metadata.json new file mode 100644 index 0000000..841d86c --- /dev/null +++ b/composeApp/build/tmp/.cache/expanded/zip_1bda082b9b3cb1491bfc13a824d95ba9/META-INF/kotlin-project-structure-metadata.json @@ -0,0 +1,418 @@ +{ + "projectStructure": { + "formatVersion": "0.3.3", + "isPublishedAsRoot": "true", + "variants": [ + { + "name": "androidNativeArm32ApiElements", + "sourceSet": [ + "androidNativeMain", + "nativeMain", + "commonMain", + "concurrentMain", + "nativeOtherMain" + ] + }, + { + "name": "androidNativeArm64ApiElements", + "sourceSet": [ + "androidNativeMain", + "nativeMain", + "commonMain", + "concurrentMain", + "nativeOtherMain" + ] + }, + { + "name": "androidNativeX64ApiElements", + "sourceSet": [ + "androidNativeMain", + "nativeMain", + "commonMain", + "concurrentMain", + "nativeOtherMain" + ] + }, + { + "name": "androidNativeX86ApiElements", + "sourceSet": [ + "androidNativeMain", + "nativeMain", + "commonMain", + "concurrentMain", + "nativeOtherMain" + ] + }, + { + "name": "iosArm64ApiElements", + "sourceSet": [ + "iosMain", + "appleMain", + "nativeMain", + "commonMain", + "concurrentMain", + "nativeDarwinMain" + ] + }, + { + "name": "iosSimulatorArm64ApiElements", + "sourceSet": [ + "iosMain", + "appleMain", + "nativeMain", + "commonMain", + "concurrentMain", + "nativeDarwinMain" + ] + }, + { + "name": "iosX64ApiElements", + "sourceSet": [ + "iosMain", + "appleMain", + "nativeMain", + "commonMain", + "concurrentMain", + "nativeDarwinMain" + ] + }, + { + "name": "jsApiElements", + "sourceSet": [ + "commonMain", + "jsAndWasmSharedMain" + ] + }, + { + "name": "jsRuntimeElements", + "sourceSet": [ + "commonMain", + "jsAndWasmSharedMain" + ] + }, + { + "name": "jvmApiElements", + "sourceSet": [ + "commonMain", + "concurrentMain" + ] + }, + { + "name": "jvmRuntimeElements", + "sourceSet": [ + "commonMain", + "concurrentMain" + ] + }, + { + "name": "linuxArm64ApiElements", + "sourceSet": [ + "linuxMain", + "nativeMain", + "commonMain", + "concurrentMain", + "nativeOtherMain" + ] + }, + { + "name": "linuxX64ApiElements", + "sourceSet": [ + "linuxMain", + "nativeMain", + "commonMain", + "concurrentMain", + "nativeOtherMain" + ] + }, + { + "name": "macosArm64ApiElements", + "sourceSet": [ + "macosMain", + "appleMain", + "nativeMain", + "commonMain", + "concurrentMain", + "nativeDarwinMain" + ] + }, + { + "name": "macosX64ApiElements", + "sourceSet": [ + "macosMain", + "appleMain", + "nativeMain", + "commonMain", + "concurrentMain", + "nativeDarwinMain" + ] + }, + { + "name": "mingwX64ApiElements", + "sourceSet": [ + "nativeMain", + "commonMain", + "concurrentMain", + "nativeOtherMain" + ] + }, + { + "name": "tvosArm64ApiElements", + "sourceSet": [ + "tvosMain", + "appleMain", + "nativeMain", + "commonMain", + "concurrentMain", + "nativeDarwinMain" + ] + }, + { + "name": "tvosSimulatorArm64ApiElements", + "sourceSet": [ + "tvosMain", + "appleMain", + "nativeMain", + "commonMain", + "concurrentMain", + "nativeDarwinMain" + ] + }, + { + "name": "tvosX64ApiElements", + "sourceSet": [ + "tvosMain", + "appleMain", + "nativeMain", + "commonMain", + "concurrentMain", + "nativeDarwinMain" + ] + }, + { + "name": "wasmJsApiElements", + "sourceSet": [ + "commonMain", + "jsAndWasmSharedMain" + ] + }, + { + "name": "wasmJsRuntimeElements", + "sourceSet": [ + "commonMain", + "jsAndWasmSharedMain" + ] + }, + { + "name": "watchosArm32ApiElements", + "sourceSet": [ + "watchosMain", + "appleMain", + "nativeMain", + "commonMain", + "concurrentMain", + "nativeDarwinMain" + ] + }, + { + "name": "watchosArm64ApiElements", + "sourceSet": [ + "watchosMain", + "appleMain", + "nativeMain", + "commonMain", + "concurrentMain", + "nativeDarwinMain" + ] + }, + { + "name": "watchosDeviceArm64ApiElements", + "sourceSet": [ + "watchosMain", + "appleMain", + "nativeMain", + "commonMain", + "concurrentMain", + "nativeDarwinMain" + ] + }, + { + "name": "watchosSimulatorArm64ApiElements", + "sourceSet": [ + "watchosMain", + "appleMain", + "nativeMain", + "commonMain", + "concurrentMain", + "nativeDarwinMain" + ] + }, + { + "name": "watchosX64ApiElements", + "sourceSet": [ + "watchosMain", + "appleMain", + "nativeMain", + "commonMain", + "concurrentMain", + "nativeDarwinMain" + ] + } + ], + "sourceSets": [ + { + "name": "androidNativeMain", + "dependsOn": [ + "nativeMain", + "nativeOtherMain" + ], + "moduleDependency": [ + "org.jetbrains.kotlinx:atomicfu", + "org.jetbrains.kotlin:kotlin-stdlib" + ], + "sourceSetCInteropMetadataDirectory": "androidNativeMain-cinterop", + "binaryLayout": "klib" + }, + { + "name": "appleMain", + "dependsOn": [ + "nativeMain", + "nativeDarwinMain" + ], + "moduleDependency": [ + "org.jetbrains.kotlinx:atomicfu", + "org.jetbrains.kotlin:kotlin-stdlib" + ], + "sourceSetCInteropMetadataDirectory": "appleMain-cinterop", + "binaryLayout": "klib", + "hostSpecific": "true" + }, + { + "name": "commonMain", + "dependsOn": [], + "moduleDependency": [ + "org.jetbrains.kotlin:kotlin-stdlib" + ], + "binaryLayout": "klib" + }, + { + "name": "concurrentMain", + "dependsOn": [ + "commonMain" + ], + "moduleDependency": [], + "binaryLayout": "klib" + }, + { + "name": "iosMain", + "dependsOn": [ + "appleMain" + ], + "moduleDependency": [ + "org.jetbrains.kotlinx:atomicfu", + "org.jetbrains.kotlin:kotlin-stdlib" + ], + "sourceSetCInteropMetadataDirectory": "iosMain-cinterop", + "binaryLayout": "klib", + "hostSpecific": "true" + }, + { + "name": "jsAndWasmSharedMain", + "dependsOn": [ + "commonMain" + ], + "moduleDependency": [], + "binaryLayout": "klib" + }, + { + "name": "linuxMain", + "dependsOn": [ + "nativeMain", + "nativeOtherMain" + ], + "moduleDependency": [ + "org.jetbrains.kotlinx:atomicfu", + "org.jetbrains.kotlin:kotlin-stdlib" + ], + "sourceSetCInteropMetadataDirectory": "linuxMain-cinterop", + "binaryLayout": "klib" + }, + { + "name": "macosMain", + "dependsOn": [ + "appleMain" + ], + "moduleDependency": [ + "org.jetbrains.kotlinx:atomicfu", + "org.jetbrains.kotlin:kotlin-stdlib" + ], + "sourceSetCInteropMetadataDirectory": "macosMain-cinterop", + "binaryLayout": "klib", + "hostSpecific": "true" + }, + { + "name": "nativeDarwinMain", + "dependsOn": [ + "nativeMain" + ], + "moduleDependency": [ + "org.jetbrains.kotlinx:atomicfu", + "org.jetbrains.kotlin:kotlin-stdlib" + ], + "sourceSetCInteropMetadataDirectory": "nativeDarwinMain-cinterop", + "binaryLayout": "klib", + "hostSpecific": "true" + }, + { + "name": "nativeMain", + "dependsOn": [ + "commonMain", + "concurrentMain" + ], + "moduleDependency": [ + "org.jetbrains.kotlin:kotlin-stdlib", + "org.jetbrains.kotlinx:atomicfu" + ], + "sourceSetCInteropMetadataDirectory": "nativeMain-cinterop", + "binaryLayout": "klib" + }, + { + "name": "nativeOtherMain", + "dependsOn": [ + "nativeMain" + ], + "moduleDependency": [ + "org.jetbrains.kotlinx:atomicfu", + "org.jetbrains.kotlin:kotlin-stdlib" + ], + "sourceSetCInteropMetadataDirectory": "nativeOtherMain-cinterop", + "binaryLayout": "klib" + }, + { + "name": "tvosMain", + "dependsOn": [ + "appleMain" + ], + "moduleDependency": [ + "org.jetbrains.kotlinx:atomicfu", + "org.jetbrains.kotlin:kotlin-stdlib" + ], + "sourceSetCInteropMetadataDirectory": "tvosMain-cinterop", + "binaryLayout": "klib", + "hostSpecific": "true" + }, + { + "name": "watchosMain", + "dependsOn": [ + "appleMain" + ], + "moduleDependency": [ + "org.jetbrains.kotlinx:atomicfu", + "org.jetbrains.kotlin:kotlin-stdlib" + ], + "sourceSetCInteropMetadataDirectory": "watchosMain-cinterop", + "binaryLayout": "klib", + "hostSpecific": "true" + } + ] + } +} \ No newline at end of file diff --git a/composeApp/build/tmp/.cache/expanded/zip_1eb1666be9b6ac4b0c6f4738bdc14813/META-INF/kotlin-project-structure-metadata.json b/composeApp/build/tmp/.cache/expanded/zip_1eb1666be9b6ac4b0c6f4738bdc14813/META-INF/kotlin-project-structure-metadata.json new file mode 100644 index 0000000..ee728f9 --- /dev/null +++ b/composeApp/build/tmp/.cache/expanded/zip_1eb1666be9b6ac4b0c6f4738bdc14813/META-INF/kotlin-project-structure-metadata.json @@ -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" + } + ] + } +} \ No newline at end of file diff --git a/composeApp/build/tmp/.cache/expanded/zip_240f7608768f48d89a51fc1f39bb2896/META-INF/kotlin-project-structure-metadata.json b/composeApp/build/tmp/.cache/expanded/zip_240f7608768f48d89a51fc1f39bb2896/META-INF/kotlin-project-structure-metadata.json new file mode 100644 index 0000000..7e583b5 --- /dev/null +++ b/composeApp/build/tmp/.cache/expanded/zip_240f7608768f48d89a51fc1f39bb2896/META-INF/kotlin-project-structure-metadata.json @@ -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" + } + ] + } +} \ No newline at end of file diff --git a/composeApp/build/tmp/.cache/expanded/zip_30ad8d74e7b183734b238165f75bebfb/META-INF/kotlin-project-structure-metadata.json b/composeApp/build/tmp/.cache/expanded/zip_30ad8d74e7b183734b238165f75bebfb/META-INF/kotlin-project-structure-metadata.json new file mode 100644 index 0000000..89927e0 --- /dev/null +++ b/composeApp/build/tmp/.cache/expanded/zip_30ad8d74e7b183734b238165f75bebfb/META-INF/kotlin-project-structure-metadata.json @@ -0,0 +1,301 @@ +{ + "projectStructure": { + "formatVersion": "0.3.3", + "isPublishedAsRoot": "true", + "variants": [ + { + "name": "debugApiElements", + "sourceSet": [ + "jvmMain", + "commonMain" + ] + }, + { + "name": "debugRuntimeElements", + "sourceSet": [ + "jvmMain", + "commonMain" + ] + }, + { + "name": "releaseApiElements", + "sourceSet": [ + "jvmMain", + "commonMain" + ] + }, + { + "name": "releaseRuntimeElements", + "sourceSet": [ + "jvmMain", + "commonMain" + ] + }, + { + "name": "desktopApiElements", + "sourceSet": [ + "jvmMain", + "commonMain", + "nonAndroidMain" + ] + }, + { + "name": "desktopRuntimeElements", + "sourceSet": [ + "jvmMain", + "commonMain", + "nonAndroidMain" + ] + }, + { + "name": "jsApiElements", + "sourceSet": [ + "commonMain", + "webMain", + "nonJvmMain", + "nonAndroidMain" + ] + }, + { + "name": "jsRuntimeElements", + "sourceSet": [ + "commonMain", + "webMain", + "nonJvmMain", + "nonAndroidMain" + ] + }, + { + "name": "macosArm64ApiElements", + "sourceSet": [ + "macosMain", + "darwinMain", + "nativeMain", + "commonMain", + "nonJvmMain", + "nonAndroidMain" + ] + }, + { + "name": "macosX64ApiElements", + "sourceSet": [ + "macosMain", + "darwinMain", + "nativeMain", + "commonMain", + "nonJvmMain", + "nonAndroidMain" + ] + }, + { + "name": "uikitArm64ApiElements", + "sourceSet": [ + "uikitMain", + "darwinMain", + "nativeMain", + "commonMain", + "nonJvmMain", + "nonAndroidMain" + ] + }, + { + "name": "uikitSimArm64ApiElements", + "sourceSet": [ + "uikitMain", + "darwinMain", + "nativeMain", + "commonMain", + "nonJvmMain", + "nonAndroidMain" + ] + }, + { + "name": "uikitX64ApiElements", + "sourceSet": [ + "uikitMain", + "darwinMain", + "nativeMain", + "commonMain", + "nonJvmMain", + "nonAndroidMain" + ] + }, + { + "name": "wasmJsApiElements", + "sourceSet": [ + "commonMain", + "webMain", + "nonJvmMain", + "nonAndroidMain" + ] + }, + { + "name": "wasmJsRuntimeElements", + "sourceSet": [ + "commonMain", + "webMain", + "nonJvmMain", + "nonAndroidMain" + ] + } + ], + "sourceSets": [ + { + "name": "commonMain", + "dependsOn": [], + "moduleDependency": [ + "org.jetbrains.androidx.lifecycle:lifecycle-common", + "org.jetbrains.androidx.lifecycle:lifecycle-viewmodel", + "androidx.annotation:annotation", + "org.jetbrains.compose.runtime:runtime", + "org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-savedstate", + "org.jetbrains.compose.ui:ui", + "org.jetbrains.kotlinx:kotlinx-serialization-core", + "org.jetbrains.kotlin:kotlin-stdlib" + ], + "binaryLayout": "klib" + }, + { + "name": "darwinMain", + "dependsOn": [ + "nativeMain" + ], + "moduleDependency": [ + "org.jetbrains.androidx.lifecycle:lifecycle-common", + "org.jetbrains.androidx.lifecycle:lifecycle-viewmodel", + "androidx.annotation:annotation", + "org.jetbrains.compose.runtime:runtime", + "org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-savedstate", + "org.jetbrains.compose.ui:ui", + "org.jetbrains.kotlinx:kotlinx-serialization-core" + ], + "sourceSetCInteropMetadataDirectory": "darwinMain-cinterop", + "binaryLayout": "klib", + "hostSpecific": "true" + }, + { + "name": "jvmMain", + "dependsOn": [ + "commonMain" + ], + "moduleDependency": [ + "org.jetbrains.androidx.lifecycle:lifecycle-common", + "org.jetbrains.androidx.lifecycle:lifecycle-viewmodel", + "androidx.annotation:annotation", + "org.jetbrains.compose.runtime:runtime", + "org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-savedstate", + "org.jetbrains.compose.ui:ui", + "org.jetbrains.kotlinx:kotlinx-serialization-core", + "org.jetbrains.kotlin:kotlin-stdlib" + ], + "binaryLayout": "klib" + }, + { + "name": "macosMain", + "dependsOn": [ + "darwinMain" + ], + "moduleDependency": [ + "org.jetbrains.androidx.lifecycle:lifecycle-common", + "org.jetbrains.androidx.lifecycle:lifecycle-viewmodel", + "androidx.annotation:annotation", + "org.jetbrains.compose.runtime:runtime", + "org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-savedstate", + "org.jetbrains.compose.ui:ui", + "org.jetbrains.kotlinx:kotlinx-serialization-core" + ], + "sourceSetCInteropMetadataDirectory": "macosMain-cinterop", + "binaryLayout": "klib", + "hostSpecific": "true" + }, + { + "name": "nativeMain", + "dependsOn": [ + "commonMain", + "nonJvmMain" + ], + "moduleDependency": [ + "org.jetbrains.androidx.lifecycle:lifecycle-common", + "org.jetbrains.androidx.lifecycle:lifecycle-viewmodel", + "androidx.annotation:annotation", + "org.jetbrains.compose.runtime:runtime", + "org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-savedstate", + "org.jetbrains.compose.ui:ui", + "org.jetbrains.kotlinx:kotlinx-serialization-core" + ], + "sourceSetCInteropMetadataDirectory": "nativeMain-cinterop", + "binaryLayout": "klib", + "hostSpecific": "true" + }, + { + "name": "nonAndroidMain", + "dependsOn": [ + "commonMain" + ], + "moduleDependency": [ + "org.jetbrains.androidx.lifecycle:lifecycle-common", + "org.jetbrains.androidx.lifecycle:lifecycle-viewmodel", + "androidx.annotation:annotation", + "org.jetbrains.compose.runtime:runtime", + "org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-savedstate", + "org.jetbrains.compose.ui:ui", + "org.jetbrains.kotlinx:kotlinx-serialization-core", + "org.jetbrains.kotlin:kotlin-stdlib" + ], + "binaryLayout": "klib" + }, + { + "name": "nonJvmMain", + "dependsOn": [ + "nonAndroidMain" + ], + "moduleDependency": [ + "org.jetbrains.androidx.lifecycle:lifecycle-common", + "org.jetbrains.androidx.lifecycle:lifecycle-viewmodel", + "androidx.annotation:annotation", + "org.jetbrains.compose.runtime:runtime", + "org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-savedstate", + "org.jetbrains.compose.ui:ui", + "org.jetbrains.kotlinx:kotlinx-serialization-core", + "org.jetbrains.kotlin:kotlin-stdlib" + ], + "binaryLayout": "klib" + }, + { + "name": "uikitMain", + "dependsOn": [ + "darwinMain" + ], + "moduleDependency": [ + "org.jetbrains.androidx.lifecycle:lifecycle-common", + "org.jetbrains.androidx.lifecycle:lifecycle-viewmodel", + "androidx.annotation:annotation", + "org.jetbrains.compose.runtime:runtime", + "org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-savedstate", + "org.jetbrains.compose.ui:ui", + "org.jetbrains.kotlinx:kotlinx-serialization-core" + ], + "sourceSetCInteropMetadataDirectory": "uikitMain-cinterop", + "binaryLayout": "klib", + "hostSpecific": "true" + }, + { + "name": "webMain", + "dependsOn": [ + "nonJvmMain" + ], + "moduleDependency": [ + "org.jetbrains.androidx.lifecycle:lifecycle-common", + "org.jetbrains.androidx.lifecycle:lifecycle-viewmodel", + "androidx.annotation:annotation", + "org.jetbrains.compose.runtime:runtime", + "org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-savedstate", + "org.jetbrains.compose.ui:ui", + "org.jetbrains.kotlinx:kotlinx-serialization-core", + "org.jetbrains.kotlin:kotlin-stdlib" + ], + "binaryLayout": "klib" + } + ] + } +} \ No newline at end of file diff --git a/composeApp/build/tmp/.cache/expanded/zip_3b469696c12d2405c0c2e19c68f1810c/META-INF/kotlin-project-structure-metadata.json b/composeApp/build/tmp/.cache/expanded/zip_3b469696c12d2405c0c2e19c68f1810c/META-INF/kotlin-project-structure-metadata.json new file mode 100644 index 0000000..6183ee1 --- /dev/null +++ b/composeApp/build/tmp/.cache/expanded/zip_3b469696c12d2405c0c2e19c68f1810c/META-INF/kotlin-project-structure-metadata.json @@ -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" + } + ] + } +} \ No newline at end of file diff --git a/composeApp/build/tmp/.cache/expanded/zip_7174a1e8629590de1621d14298b5e788/META-INF/kotlin-project-structure-metadata.json b/composeApp/build/tmp/.cache/expanded/zip_7174a1e8629590de1621d14298b5e788/META-INF/kotlin-project-structure-metadata.json new file mode 100644 index 0000000..3720ccb --- /dev/null +++ b/composeApp/build/tmp/.cache/expanded/zip_7174a1e8629590de1621d14298b5e788/META-INF/kotlin-project-structure-metadata.json @@ -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" + } + ] + } +} \ No newline at end of file diff --git a/composeApp/build/tmp/.cache/expanded/zip_7359d2ef7f7b4fed68af66c5ebbb0bd6/META-INF/kotlin-project-structure-metadata.json b/composeApp/build/tmp/.cache/expanded/zip_7359d2ef7f7b4fed68af66c5ebbb0bd6/META-INF/kotlin-project-structure-metadata.json new file mode 100644 index 0000000..45a4748 --- /dev/null +++ b/composeApp/build/tmp/.cache/expanded/zip_7359d2ef7f7b4fed68af66c5ebbb0bd6/META-INF/kotlin-project-structure-metadata.json @@ -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" + } + ] + } +} \ No newline at end of file diff --git a/composeApp/build/tmp/.cache/expanded/zip_769f0653de234bce8bc738c7392ca601/META-INF/kotlin-project-structure-metadata.json b/composeApp/build/tmp/.cache/expanded/zip_769f0653de234bce8bc738c7392ca601/META-INF/kotlin-project-structure-metadata.json new file mode 100644 index 0000000..afac66f --- /dev/null +++ b/composeApp/build/tmp/.cache/expanded/zip_769f0653de234bce8bc738c7392ca601/META-INF/kotlin-project-structure-metadata.json @@ -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" + } + ] + } +} \ No newline at end of file diff --git a/composeApp/build/tmp/.cache/expanded/zip_7b1e2dbdc628dc25022d24d5609a4ad8/META-INF/kotlin-project-structure-metadata.json b/composeApp/build/tmp/.cache/expanded/zip_7b1e2dbdc628dc25022d24d5609a4ad8/META-INF/kotlin-project-structure-metadata.json new file mode 100644 index 0000000..44a0bec --- /dev/null +++ b/composeApp/build/tmp/.cache/expanded/zip_7b1e2dbdc628dc25022d24d5609a4ad8/META-INF/kotlin-project-structure-metadata.json @@ -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" + } + ] + } +} \ No newline at end of file diff --git a/composeApp/build/tmp/.cache/expanded/zip_80dccb6b55fc164d0b558fc848959ea7/META-INF/kotlin-project-structure-metadata.json b/composeApp/build/tmp/.cache/expanded/zip_80dccb6b55fc164d0b558fc848959ea7/META-INF/kotlin-project-structure-metadata.json new file mode 100644 index 0000000..ebb9964 --- /dev/null +++ b/composeApp/build/tmp/.cache/expanded/zip_80dccb6b55fc164d0b558fc848959ea7/META-INF/kotlin-project-structure-metadata.json @@ -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" + } + ] + } +} \ No newline at end of file diff --git a/composeApp/build/tmp/.cache/expanded/zip_850de10159c05374ba5e4117dc32567d/META-INF/kotlin-project-structure-metadata.json b/composeApp/build/tmp/.cache/expanded/zip_850de10159c05374ba5e4117dc32567d/META-INF/kotlin-project-structure-metadata.json new file mode 100644 index 0000000..6b2cd99 --- /dev/null +++ b/composeApp/build/tmp/.cache/expanded/zip_850de10159c05374ba5e4117dc32567d/META-INF/kotlin-project-structure-metadata.json @@ -0,0 +1,168 @@ +{ + "projectStructure": { + "formatVersion": "0.3.3", + "isPublishedAsRoot": "true", + "variants": [ + { + "name": "debugApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "debugRuntimeElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "releaseApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "releaseRuntimeElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "desktopApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "desktopRuntimeElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "iosArm64ApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "iosSimulatorArm64ApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "iosX64ApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "jsApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "jsRuntimeElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "linuxArm64ApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "linuxX64ApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "macosArm64ApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "macosX64ApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "mingwX64ApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "tvosArm64ApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "tvosSimulatorArm64ApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "tvosX64ApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "wasmJsApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "wasmJsRuntimeElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "watchosArm32ApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "watchosArm64ApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "watchosSimulatorArm64ApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "watchosX64ApiElements", + "sourceSet": [ + "commonMain" + ] + } + ], + "sourceSets": [ + { + "name": "commonMain", + "dependsOn": [], + "moduleDependency": [ + "androidx.lifecycle:lifecycle-runtime" + ], + "binaryLayout": "klib" + } + ] + } +} \ No newline at end of file diff --git a/composeApp/build/tmp/.cache/expanded/zip_8c8382026b57a9b73db85366b49f355c/META-INF/kotlin-project-structure-metadata.json b/composeApp/build/tmp/.cache/expanded/zip_8c8382026b57a9b73db85366b49f355c/META-INF/kotlin-project-structure-metadata.json new file mode 100644 index 0000000..daf8c4e --- /dev/null +++ b/composeApp/build/tmp/.cache/expanded/zip_8c8382026b57a9b73db85366b49f355c/META-INF/kotlin-project-structure-metadata.json @@ -0,0 +1,185 @@ +{ + "projectStructure": { + "formatVersion": "0.3.3", + "isPublishedAsRoot": "true", + "variants": [ + { + "name": "iosArm64ApiElements", + "sourceSet": [ + "nonJvmMain", + "commonMain" + ] + }, + { + "name": "iosSimulatorArm64ApiElements", + "sourceSet": [ + "nonJvmMain", + "commonMain" + ] + }, + { + "name": "iosX64ApiElements", + "sourceSet": [ + "nonJvmMain", + "commonMain" + ] + }, + { + "name": "jsApiElements", + "sourceSet": [ + "nonJvmMain", + "commonMain" + ] + }, + { + "name": "jsRuntimeElements", + "sourceSet": [ + "nonJvmMain", + "commonMain" + ] + }, + { + "name": "jvmApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "jvmRuntimeElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "linuxArm64ApiElements", + "sourceSet": [ + "nonJvmMain", + "commonMain" + ] + }, + { + "name": "linuxX64ApiElements", + "sourceSet": [ + "nonJvmMain", + "commonMain" + ] + }, + { + "name": "macosArm64ApiElements", + "sourceSet": [ + "nonJvmMain", + "commonMain" + ] + }, + { + "name": "macosX64ApiElements", + "sourceSet": [ + "nonJvmMain", + "commonMain" + ] + }, + { + "name": "mingwX64ApiElements", + "sourceSet": [ + "nonJvmMain", + "commonMain" + ] + }, + { + "name": "tvosArm64ApiElements", + "sourceSet": [ + "nonJvmMain", + "commonMain" + ] + }, + { + "name": "tvosSimulatorArm64ApiElements", + "sourceSet": [ + "nonJvmMain", + "commonMain" + ] + }, + { + "name": "tvosX64ApiElements", + "sourceSet": [ + "nonJvmMain", + "commonMain" + ] + }, + { + "name": "wasmJsApiElements", + "sourceSet": [ + "nonJvmMain", + "commonMain" + ] + }, + { + "name": "wasmJsRuntimeElements", + "sourceSet": [ + "nonJvmMain", + "commonMain" + ] + }, + { + "name": "watchosArm32ApiElements", + "sourceSet": [ + "nonJvmMain", + "commonMain" + ] + }, + { + "name": "watchosArm64ApiElements", + "sourceSet": [ + "nonJvmMain", + "commonMain" + ] + }, + { + "name": "watchosDeviceArm64ApiElements", + "sourceSet": [ + "nonJvmMain", + "commonMain" + ] + }, + { + "name": "watchosSimulatorArm64ApiElements", + "sourceSet": [ + "nonJvmMain", + "commonMain" + ] + }, + { + "name": "watchosX64ApiElements", + "sourceSet": [ + "nonJvmMain", + "commonMain" + ] + } + ], + "sourceSets": [ + { + "name": "commonMain", + "dependsOn": [], + "moduleDependency": [ + "org.jetbrains.kotlin:kotlin-stdlib", + "org.jetbrains.kotlinx:kotlinx-coroutines-core", + "androidx.annotation:annotation" + ], + "binaryLayout": "klib" + }, + { + "name": "nonJvmMain", + "dependsOn": [ + "commonMain" + ], + "moduleDependency": [ + "org.jetbrains.kotlin:kotlin-stdlib", + "org.jetbrains.kotlinx:kotlinx-coroutines-core", + "androidx.annotation:annotation", + "org.jetbrains.kotlinx:atomicfu" + ], + "binaryLayout": "klib" + } + ] + } +} \ No newline at end of file diff --git a/composeApp/build/tmp/.cache/expanded/zip_8d051b7095b0f645ef16cb72e62190b5/META-INF/kotlin-project-structure-metadata.json b/composeApp/build/tmp/.cache/expanded/zip_8d051b7095b0f645ef16cb72e62190b5/META-INF/kotlin-project-structure-metadata.json new file mode 100644 index 0000000..d2d0324 --- /dev/null +++ b/composeApp/build/tmp/.cache/expanded/zip_8d051b7095b0f645ef16cb72e62190b5/META-INF/kotlin-project-structure-metadata.json @@ -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" + } + ] + } +} \ No newline at end of file diff --git a/composeApp/build/tmp/.cache/expanded/zip_94681404496a4489c6baaa3fcc7802d9/META-INF/kotlin-project-structure-metadata.json b/composeApp/build/tmp/.cache/expanded/zip_94681404496a4489c6baaa3fcc7802d9/META-INF/kotlin-project-structure-metadata.json new file mode 100644 index 0000000..cd9ff42 --- /dev/null +++ b/composeApp/build/tmp/.cache/expanded/zip_94681404496a4489c6baaa3fcc7802d9/META-INF/kotlin-project-structure-metadata.json @@ -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" + } + ] + } +} \ No newline at end of file diff --git a/composeApp/build/tmp/.cache/expanded/zip_96f1883b06299eda64c6b5da4552cdb0/META-INF/kotlin-project-structure-metadata.json b/composeApp/build/tmp/.cache/expanded/zip_96f1883b06299eda64c6b5da4552cdb0/META-INF/kotlin-project-structure-metadata.json new file mode 100644 index 0000000..6d17361 --- /dev/null +++ b/composeApp/build/tmp/.cache/expanded/zip_96f1883b06299eda64c6b5da4552cdb0/META-INF/kotlin-project-structure-metadata.json @@ -0,0 +1,339 @@ +{ + "projectStructure": { + "formatVersion": "0.3.3", + "isPublishedAsRoot": "true", + "variants": [ + { + "name": "androidNativeArm32ApiElements", + "sourceSet": [ + "androidNativeMain", + "nativeMain", + "commonMain" + ] + }, + { + "name": "androidNativeArm64ApiElements", + "sourceSet": [ + "androidNativeMain", + "nativeMain", + "commonMain" + ] + }, + { + "name": "androidNativeX64ApiElements", + "sourceSet": [ + "androidNativeMain", + "nativeMain", + "commonMain" + ] + }, + { + "name": "androidNativeX86ApiElements", + "sourceSet": [ + "androidNativeMain", + "nativeMain", + "commonMain" + ] + }, + { + "name": "iosArm64ApiElements", + "sourceSet": [ + "iosMain", + "appleMain", + "nativeMain", + "commonMain" + ] + }, + { + "name": "iosSimulatorArm64ApiElements", + "sourceSet": [ + "iosMain", + "appleMain", + "nativeMain", + "commonMain" + ] + }, + { + "name": "iosX64ApiElements", + "sourceSet": [ + "iosMain", + "appleMain", + "nativeMain", + "commonMain" + ] + }, + { + "name": "jsApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "jsRuntimeElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "jvmApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "jvmRuntimeElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "linuxArm32HfpApiElements", + "sourceSet": [ + "linuxMain", + "nativeMain", + "commonMain" + ] + }, + { + "name": "linuxArm64ApiElements", + "sourceSet": [ + "linuxMain", + "nativeMain", + "commonMain" + ] + }, + { + "name": "linuxX64ApiElements", + "sourceSet": [ + "linuxMain", + "nativeMain", + "commonMain" + ] + }, + { + "name": "macosArm64ApiElements", + "sourceSet": [ + "macosMain", + "appleMain", + "nativeMain", + "commonMain" + ] + }, + { + "name": "macosX64ApiElements", + "sourceSet": [ + "macosMain", + "appleMain", + "nativeMain", + "commonMain" + ] + }, + { + "name": "mingwX64ApiElements", + "sourceSet": [ + "nativeMain", + "commonMain" + ] + }, + { + "name": "tvosArm64ApiElements", + "sourceSet": [ + "tvosMain", + "appleMain", + "nativeMain", + "commonMain" + ] + }, + { + "name": "tvosSimulatorArm64ApiElements", + "sourceSet": [ + "tvosMain", + "appleMain", + "nativeMain", + "commonMain" + ] + }, + { + "name": "tvosX64ApiElements", + "sourceSet": [ + "tvosMain", + "appleMain", + "nativeMain", + "commonMain" + ] + }, + { + "name": "wasmJsApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "wasmJsRuntimeElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "wasmWasiApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "wasmWasiRuntimeElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "watchosArm32ApiElements", + "sourceSet": [ + "watchosMain", + "appleMain", + "nativeMain", + "commonMain" + ] + }, + { + "name": "watchosArm64ApiElements", + "sourceSet": [ + "watchosMain", + "appleMain", + "nativeMain", + "commonMain" + ] + }, + { + "name": "watchosDeviceArm64ApiElements", + "sourceSet": [ + "watchosMain", + "appleMain", + "nativeMain", + "commonMain" + ] + }, + { + "name": "watchosSimulatorArm64ApiElements", + "sourceSet": [ + "watchosMain", + "appleMain", + "nativeMain", + "commonMain" + ] + }, + { + "name": "watchosX64ApiElements", + "sourceSet": [ + "watchosMain", + "appleMain", + "nativeMain", + "commonMain" + ] + } + ], + "sourceSets": [ + { + "name": "androidNativeMain", + "dependsOn": [ + "nativeMain" + ], + "moduleDependency": [ + "org.jetbrains.kotlin:kotlin-stdlib" + ], + "sourceSetCInteropMetadataDirectory": "androidNativeMain-cinterop", + "binaryLayout": "klib" + }, + { + "name": "appleMain", + "dependsOn": [ + "nativeMain" + ], + "moduleDependency": [ + "org.jetbrains.kotlin:kotlin-stdlib" + ], + "sourceSetCInteropMetadataDirectory": "appleMain-cinterop", + "binaryLayout": "klib", + "hostSpecific": "true" + }, + { + "name": "commonMain", + "dependsOn": [], + "moduleDependency": [ + "org.jetbrains.kotlin:kotlin-stdlib" + ], + "binaryLayout": "klib" + }, + { + "name": "iosMain", + "dependsOn": [ + "appleMain" + ], + "moduleDependency": [ + "org.jetbrains.kotlin:kotlin-stdlib" + ], + "sourceSetCInteropMetadataDirectory": "iosMain-cinterop", + "binaryLayout": "klib", + "hostSpecific": "true" + }, + { + "name": "linuxMain", + "dependsOn": [ + "nativeMain" + ], + "moduleDependency": [ + "org.jetbrains.kotlin:kotlin-stdlib" + ], + "sourceSetCInteropMetadataDirectory": "linuxMain-cinterop", + "binaryLayout": "klib" + }, + { + "name": "macosMain", + "dependsOn": [ + "appleMain" + ], + "moduleDependency": [ + "org.jetbrains.kotlin:kotlin-stdlib" + ], + "sourceSetCInteropMetadataDirectory": "macosMain-cinterop", + "binaryLayout": "klib", + "hostSpecific": "true" + }, + { + "name": "nativeMain", + "dependsOn": [ + "commonMain" + ], + "moduleDependency": [ + "org.jetbrains.kotlin:kotlin-stdlib" + ], + "sourceSetCInteropMetadataDirectory": "nativeMain-cinterop", + "binaryLayout": "klib" + }, + { + "name": "tvosMain", + "dependsOn": [ + "appleMain" + ], + "moduleDependency": [ + "org.jetbrains.kotlin:kotlin-stdlib" + ], + "sourceSetCInteropMetadataDirectory": "tvosMain-cinterop", + "binaryLayout": "klib", + "hostSpecific": "true" + }, + { + "name": "watchosMain", + "dependsOn": [ + "appleMain" + ], + "moduleDependency": [ + "org.jetbrains.kotlin:kotlin-stdlib" + ], + "sourceSetCInteropMetadataDirectory": "watchosMain-cinterop", + "binaryLayout": "klib", + "hostSpecific": "true" + } + ] + } +} \ No newline at end of file diff --git a/composeApp/build/tmp/.cache/expanded/zip_9735b30a9b0d11348787911ecada2b14/META-INF/kotlin-project-structure-metadata.json b/composeApp/build/tmp/.cache/expanded/zip_9735b30a9b0d11348787911ecada2b14/META-INF/kotlin-project-structure-metadata.json new file mode 100644 index 0000000..f64d0da --- /dev/null +++ b/composeApp/build/tmp/.cache/expanded/zip_9735b30a9b0d11348787911ecada2b14/META-INF/kotlin-project-structure-metadata.json @@ -0,0 +1,168 @@ +{ + "projectStructure": { + "formatVersion": "0.3.3", + "isPublishedAsRoot": "true", + "variants": [ + { + "name": "debugApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "debugRuntimeElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "releaseApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "releaseRuntimeElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "desktopApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "desktopRuntimeElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "iosArm64ApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "iosSimulatorArm64ApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "iosX64ApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "jsApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "jsRuntimeElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "linuxArm64ApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "linuxX64ApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "macosArm64ApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "macosX64ApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "mingwX64ApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "tvosArm64ApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "tvosSimulatorArm64ApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "tvosX64ApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "wasmJsApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "wasmJsRuntimeElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "watchosArm32ApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "watchosArm64ApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "watchosSimulatorArm64ApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "watchosX64ApiElements", + "sourceSet": [ + "commonMain" + ] + } + ], + "sourceSets": [ + { + "name": "commonMain", + "dependsOn": [], + "moduleDependency": [ + "androidx.lifecycle:lifecycle-viewmodel" + ], + "binaryLayout": "klib" + } + ] + } +} \ No newline at end of file diff --git a/composeApp/build/tmp/.cache/expanded/zip_9b6b423f1d77370192d2365caf0ad06c/META-INF/kotlin-project-structure-metadata.json b/composeApp/build/tmp/.cache/expanded/zip_9b6b423f1d77370192d2365caf0ad06c/META-INF/kotlin-project-structure-metadata.json new file mode 100644 index 0000000..7d4990e --- /dev/null +++ b/composeApp/build/tmp/.cache/expanded/zip_9b6b423f1d77370192d2365caf0ad06c/META-INF/kotlin-project-structure-metadata.json @@ -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" + } + ] + } +} \ No newline at end of file diff --git a/composeApp/build/tmp/.cache/expanded/zip_9ba25079516ff8806050fd3c7b487830/META-INF/kotlin-project-structure-metadata.json b/composeApp/build/tmp/.cache/expanded/zip_9ba25079516ff8806050fd3c7b487830/META-INF/kotlin-project-structure-metadata.json new file mode 100644 index 0000000..67d58ba --- /dev/null +++ b/composeApp/build/tmp/.cache/expanded/zip_9ba25079516ff8806050fd3c7b487830/META-INF/kotlin-project-structure-metadata.json @@ -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" + } + ] + } +} \ No newline at end of file diff --git a/composeApp/build/tmp/.cache/expanded/zip_a786962cfd6af94db065e1a94a8f9561/META-INF/kotlin-project-structure-metadata.json b/composeApp/build/tmp/.cache/expanded/zip_a786962cfd6af94db065e1a94a8f9561/META-INF/kotlin-project-structure-metadata.json new file mode 100644 index 0000000..3e984c1 --- /dev/null +++ b/composeApp/build/tmp/.cache/expanded/zip_a786962cfd6af94db065e1a94a8f9561/META-INF/kotlin-project-structure-metadata.json @@ -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" + } + ] + } +} \ No newline at end of file diff --git a/composeApp/build/tmp/.cache/expanded/zip_aac2523fec29df7ad9b6784d00b56712/META-INF/kotlin-project-structure-metadata.json b/composeApp/build/tmp/.cache/expanded/zip_aac2523fec29df7ad9b6784d00b56712/META-INF/kotlin-project-structure-metadata.json new file mode 100644 index 0000000..5aa5214 --- /dev/null +++ b/composeApp/build/tmp/.cache/expanded/zip_aac2523fec29df7ad9b6784d00b56712/META-INF/kotlin-project-structure-metadata.json @@ -0,0 +1,342 @@ +{ + "projectStructure": { + "formatVersion": "0.3.3", + "isPublishedAsRoot": "true", + "variants": [ + { + "name": "releaseApiElements", + "sourceSet": [ + "jvmMain", + "commonMain" + ] + }, + { + "name": "releaseRuntimeElements", + "sourceSet": [ + "jvmMain", + "commonMain" + ] + }, + { + "name": "desktopApiElements", + "sourceSet": [ + "jvmMain", + "commonMain", + "nonAndroidMain" + ] + }, + { + "name": "desktopRuntimeElements", + "sourceSet": [ + "jvmMain", + "commonMain", + "nonAndroidMain" + ] + }, + { + "name": "iosArm64ApiElements", + "sourceSet": [ + "darwinMain", + "unixMain", + "nativeMain", + "commonMain", + "nonAndroidMain" + ] + }, + { + "name": "iosSimulatorArm64ApiElements", + "sourceSet": [ + "darwinMain", + "unixMain", + "nativeMain", + "commonMain", + "nonAndroidMain" + ] + }, + { + "name": "iosX64ApiElements", + "sourceSet": [ + "darwinMain", + "unixMain", + "nativeMain", + "commonMain", + "nonAndroidMain" + ] + }, + { + "name": "jsApiElements", + "sourceSet": [ + "webMain", + "nonAndroidMain", + "commonMain" + ] + }, + { + "name": "jsRuntimeElements", + "sourceSet": [ + "webMain", + "nonAndroidMain", + "commonMain" + ] + }, + { + "name": "linuxArm64ApiElements", + "sourceSet": [ + "linuxMain", + "unixMain", + "nativeMain", + "commonMain", + "nonAndroidMain" + ] + }, + { + "name": "linuxX64ApiElements", + "sourceSet": [ + "linuxMain", + "unixMain", + "nativeMain", + "commonMain", + "nonAndroidMain" + ] + }, + { + "name": "macosArm64ApiElements", + "sourceSet": [ + "darwinMain", + "unixMain", + "nativeMain", + "commonMain", + "nonAndroidMain" + ] + }, + { + "name": "macosX64ApiElements", + "sourceSet": [ + "darwinMain", + "unixMain", + "nativeMain", + "commonMain", + "nonAndroidMain" + ] + }, + { + "name": "mingwX64ApiElements", + "sourceSet": [ + "nativeMain", + "commonMain", + "nonAndroidMain" + ] + }, + { + "name": "tvosArm64ApiElements", + "sourceSet": [ + "darwinMain", + "unixMain", + "nativeMain", + "commonMain", + "nonAndroidMain" + ] + }, + { + "name": "tvosSimulatorArm64ApiElements", + "sourceSet": [ + "darwinMain", + "unixMain", + "nativeMain", + "commonMain", + "nonAndroidMain" + ] + }, + { + "name": "tvosX64ApiElements", + "sourceSet": [ + "darwinMain", + "unixMain", + "nativeMain", + "commonMain", + "nonAndroidMain" + ] + }, + { + "name": "wasmJsApiElements", + "sourceSet": [ + "webMain", + "nonAndroidMain", + "commonMain" + ] + }, + { + "name": "wasmJsRuntimeElements", + "sourceSet": [ + "webMain", + "nonAndroidMain", + "commonMain" + ] + }, + { + "name": "watchosArm32ApiElements", + "sourceSet": [ + "darwinMain", + "unixMain", + "nativeMain", + "commonMain", + "nonAndroidMain" + ] + }, + { + "name": "watchosArm64ApiElements", + "sourceSet": [ + "darwinMain", + "unixMain", + "nativeMain", + "commonMain", + "nonAndroidMain" + ] + }, + { + "name": "watchosDeviceArm64ApiElements", + "sourceSet": [ + "darwinMain", + "unixMain", + "nativeMain", + "commonMain", + "nonAndroidMain" + ] + }, + { + "name": "watchosSimulatorArm64ApiElements", + "sourceSet": [ + "darwinMain", + "unixMain", + "nativeMain", + "commonMain", + "nonAndroidMain" + ] + }, + { + "name": "watchosX64ApiElements", + "sourceSet": [ + "darwinMain", + "unixMain", + "nativeMain", + "commonMain", + "nonAndroidMain" + ] + } + ], + "sourceSets": [ + { + "name": "commonMain", + "dependsOn": [], + "moduleDependency": [ + "org.jetbrains.kotlin:kotlin-stdlib", + "androidx.annotation:annotation", + "org.jetbrains.kotlinx:kotlinx-coroutines-core", + "org.jetbrains.kotlinx:kotlinx-serialization-core", + "androidx.lifecycle:lifecycle-common" + ], + "binaryLayout": "klib" + }, + { + "name": "darwinMain", + "dependsOn": [ + "unixMain" + ], + "moduleDependency": [ + "androidx.annotation:annotation", + "org.jetbrains.kotlinx:kotlinx-coroutines-core", + "org.jetbrains.kotlinx:kotlinx-serialization-core", + "androidx.lifecycle:lifecycle-common" + ], + "sourceSetCInteropMetadataDirectory": "darwinMain-cinterop", + "binaryLayout": "klib", + "hostSpecific": "true" + }, + { + "name": "jvmMain", + "dependsOn": [ + "commonMain" + ], + "moduleDependency": [ + "org.jetbrains.kotlin:kotlin-stdlib", + "androidx.annotation:annotation", + "org.jetbrains.kotlinx:kotlinx-coroutines-core", + "org.jetbrains.kotlinx:kotlinx-serialization-core", + "androidx.lifecycle:lifecycle-common" + ], + "binaryLayout": "klib" + }, + { + "name": "linuxMain", + "dependsOn": [ + "unixMain" + ], + "moduleDependency": [ + "androidx.annotation:annotation", + "org.jetbrains.kotlinx:kotlinx-coroutines-core", + "org.jetbrains.kotlinx:kotlinx-serialization-core", + "androidx.lifecycle:lifecycle-common" + ], + "sourceSetCInteropMetadataDirectory": "linuxMain-cinterop", + "binaryLayout": "klib" + }, + { + "name": "nativeMain", + "dependsOn": [ + "commonMain", + "nonAndroidMain" + ], + "moduleDependency": [ + "androidx.annotation:annotation", + "org.jetbrains.kotlinx:kotlinx-coroutines-core", + "org.jetbrains.kotlinx:kotlinx-serialization-core", + "androidx.lifecycle:lifecycle-common" + ], + "sourceSetCInteropMetadataDirectory": "nativeMain-cinterop", + "binaryLayout": "klib" + }, + { + "name": "nonAndroidMain", + "dependsOn": [ + "commonMain" + ], + "moduleDependency": [ + "org.jetbrains.kotlin:kotlin-stdlib", + "androidx.annotation:annotation", + "org.jetbrains.kotlinx:kotlinx-coroutines-core", + "org.jetbrains.kotlinx:kotlinx-serialization-core", + "androidx.lifecycle:lifecycle-common" + ], + "binaryLayout": "klib" + }, + { + "name": "unixMain", + "dependsOn": [ + "nativeMain" + ], + "moduleDependency": [ + "androidx.annotation:annotation", + "org.jetbrains.kotlinx:kotlinx-coroutines-core", + "org.jetbrains.kotlinx:kotlinx-serialization-core", + "androidx.lifecycle:lifecycle-common" + ], + "sourceSetCInteropMetadataDirectory": "unixMain-cinterop", + "binaryLayout": "klib" + }, + { + "name": "webMain", + "dependsOn": [ + "nonAndroidMain" + ], + "moduleDependency": [ + "org.jetbrains.kotlin:kotlin-stdlib", + "androidx.annotation:annotation", + "org.jetbrains.kotlinx:kotlinx-coroutines-core", + "org.jetbrains.kotlinx:kotlinx-serialization-core", + "androidx.lifecycle:lifecycle-common" + ], + "binaryLayout": "klib" + } + ] + } +} \ No newline at end of file diff --git a/composeApp/build/tmp/.cache/expanded/zip_b15e3a25f017fab51a38b93623361ab7/META-INF/kotlin-project-structure-metadata.json b/composeApp/build/tmp/.cache/expanded/zip_b15e3a25f017fab51a38b93623361ab7/META-INF/kotlin-project-structure-metadata.json new file mode 100644 index 0000000..151bc5f --- /dev/null +++ b/composeApp/build/tmp/.cache/expanded/zip_b15e3a25f017fab51a38b93623361ab7/META-INF/kotlin-project-structure-metadata.json @@ -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" + } + ] + } +} \ No newline at end of file diff --git a/composeApp/build/tmp/.cache/expanded/zip_b674459d06ec943f41a47530cc51e2e2/META-INF/kotlin-project-structure-metadata.json b/composeApp/build/tmp/.cache/expanded/zip_b674459d06ec943f41a47530cc51e2e2/META-INF/kotlin-project-structure-metadata.json new file mode 100644 index 0000000..4280f24 --- /dev/null +++ b/composeApp/build/tmp/.cache/expanded/zip_b674459d06ec943f41a47530cc51e2e2/META-INF/kotlin-project-structure-metadata.json @@ -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" + } + ] + } +} \ No newline at end of file diff --git a/composeApp/build/tmp/.cache/expanded/zip_be72bb89bb6643f6ba03e21c56459817/META-INF/kotlin-project-structure-metadata.json b/composeApp/build/tmp/.cache/expanded/zip_be72bb89bb6643f6ba03e21c56459817/META-INF/kotlin-project-structure-metadata.json new file mode 100644 index 0000000..31c6a03 --- /dev/null +++ b/composeApp/build/tmp/.cache/expanded/zip_be72bb89bb6643f6ba03e21c56459817/META-INF/kotlin-project-structure-metadata.json @@ -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" + } + ] + } +} \ No newline at end of file diff --git a/composeApp/build/tmp/.cache/expanded/zip_bf26b003b7b6b35b13e47c7e6b166e5e/META-INF/kotlin-project-structure-metadata.json b/composeApp/build/tmp/.cache/expanded/zip_bf26b003b7b6b35b13e47c7e6b166e5e/META-INF/kotlin-project-structure-metadata.json new file mode 100644 index 0000000..416fe54 --- /dev/null +++ b/composeApp/build/tmp/.cache/expanded/zip_bf26b003b7b6b35b13e47c7e6b166e5e/META-INF/kotlin-project-structure-metadata.json @@ -0,0 +1,144 @@ +{ + "projectStructure": { + "formatVersion": "0.3.3", + "isPublishedAsRoot": "true", + "variants": [ + { + "name": "iosArm64ApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "iosSimulatorArm64ApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "iosX64ApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "jsApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "jsRuntimeElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "jvmApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "jvmRuntimeElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "linuxArm64ApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "linuxX64ApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "macosArm64ApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "macosX64ApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "mingwX64ApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "tvosArm64ApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "tvosSimulatorArm64ApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "tvosX64ApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "wasmJsApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "wasmJsRuntimeElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "watchosArm32ApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "watchosArm64ApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "watchosSimulatorArm64ApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "watchosX64ApiElements", + "sourceSet": [ + "commonMain" + ] + } + ], + "sourceSets": [ + { + "name": "commonMain", + "dependsOn": [], + "moduleDependency": [ + "androidx.lifecycle:lifecycle-common" + ], + "binaryLayout": "klib" + } + ] + } +} \ No newline at end of file diff --git a/composeApp/build/tmp/.cache/expanded/zip_c865adf635955e8e72645b1f1c380a99/META-INF/kotlin-project-structure-metadata.json b/composeApp/build/tmp/.cache/expanded/zip_c865adf635955e8e72645b1f1c380a99/META-INF/kotlin-project-structure-metadata.json new file mode 100644 index 0000000..908e961 --- /dev/null +++ b/composeApp/build/tmp/.cache/expanded/zip_c865adf635955e8e72645b1f1c380a99/META-INF/kotlin-project-structure-metadata.json @@ -0,0 +1,168 @@ +{ + "projectStructure": { + "formatVersion": "0.3.3", + "isPublishedAsRoot": "true", + "variants": [ + { + "name": "debugApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "debugRuntimeElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "releaseApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "releaseRuntimeElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "desktopApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "desktopRuntimeElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "iosArm64ApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "iosSimulatorArm64ApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "iosX64ApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "jsApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "jsRuntimeElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "linuxArm64ApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "linuxX64ApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "macosArm64ApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "macosX64ApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "mingwX64ApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "tvosArm64ApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "tvosSimulatorArm64ApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "tvosX64ApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "wasmJsApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "wasmJsRuntimeElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "watchosArm32ApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "watchosArm64ApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "watchosSimulatorArm64ApiElements", + "sourceSet": [ + "commonMain" + ] + }, + { + "name": "watchosX64ApiElements", + "sourceSet": [ + "commonMain" + ] + } + ], + "sourceSets": [ + { + "name": "commonMain", + "dependsOn": [], + "moduleDependency": [ + "androidx.lifecycle:lifecycle-viewmodel-savedstate" + ], + "binaryLayout": "klib" + } + ] + } +} \ No newline at end of file diff --git a/composeApp/build/tmp/.cache/expanded/zip_d6d559b6b81837bf53066adcfc330595/META-INF/kotlin-project-structure-metadata.json b/composeApp/build/tmp/.cache/expanded/zip_d6d559b6b81837bf53066adcfc330595/META-INF/kotlin-project-structure-metadata.json new file mode 100644 index 0000000..1613c98 --- /dev/null +++ b/composeApp/build/tmp/.cache/expanded/zip_d6d559b6b81837bf53066adcfc330595/META-INF/kotlin-project-structure-metadata.json @@ -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" + } + ] + } +} \ No newline at end of file diff --git a/composeApp/build/tmp/.cache/expanded/zip_df6d852db9b3d3e6b84c9af89bf98d15/META-INF/kotlin-project-structure-metadata.json b/composeApp/build/tmp/.cache/expanded/zip_df6d852db9b3d3e6b84c9af89bf98d15/META-INF/kotlin-project-structure-metadata.json new file mode 100644 index 0000000..60c4e59 --- /dev/null +++ b/composeApp/build/tmp/.cache/expanded/zip_df6d852db9b3d3e6b84c9af89bf98d15/META-INF/kotlin-project-structure-metadata.json @@ -0,0 +1,327 @@ +{ + "projectStructure": { + "formatVersion": "0.3.3", + "isPublishedAsRoot": "true", + "variants": [ + { + "name": "releaseApiElements", + "sourceSet": [ + "jvmMain", + "commonMain" + ] + }, + { + "name": "releaseRuntimeElements", + "sourceSet": [ + "jvmMain", + "commonMain" + ] + }, + { + "name": "desktopApiElements", + "sourceSet": [ + "jvmMain", + "commonMain", + "nonAndroidMain" + ] + }, + { + "name": "desktopRuntimeElements", + "sourceSet": [ + "jvmMain", + "commonMain", + "nonAndroidMain" + ] + }, + { + "name": "iosArm64ApiElements", + "sourceSet": [ + "darwinMain", + "nativeMain", + "commonMain", + "nonAndroidMain" + ] + }, + { + "name": "iosSimulatorArm64ApiElements", + "sourceSet": [ + "darwinMain", + "nativeMain", + "commonMain", + "nonAndroidMain" + ] + }, + { + "name": "iosX64ApiElements", + "sourceSet": [ + "darwinMain", + "nativeMain", + "commonMain", + "nonAndroidMain" + ] + }, + { + "name": "jsApiElements", + "sourceSet": [ + "webMain", + "nonAndroidMain", + "commonMain" + ] + }, + { + "name": "jsRuntimeElements", + "sourceSet": [ + "webMain", + "nonAndroidMain", + "commonMain" + ] + }, + { + "name": "linuxArm64ApiElements", + "sourceSet": [ + "linuxMain", + "nativeMain", + "commonMain", + "nonAndroidMain" + ] + }, + { + "name": "linuxX64ApiElements", + "sourceSet": [ + "linuxMain", + "nativeMain", + "commonMain", + "nonAndroidMain" + ] + }, + { + "name": "macosArm64ApiElements", + "sourceSet": [ + "darwinMain", + "nativeMain", + "commonMain", + "nonAndroidMain" + ] + }, + { + "name": "macosX64ApiElements", + "sourceSet": [ + "darwinMain", + "nativeMain", + "commonMain", + "nonAndroidMain" + ] + }, + { + "name": "mingwX64ApiElements", + "sourceSet": [ + "nativeMain", + "commonMain", + "nonAndroidMain" + ] + }, + { + "name": "tvosArm64ApiElements", + "sourceSet": [ + "darwinMain", + "nativeMain", + "commonMain", + "nonAndroidMain" + ] + }, + { + "name": "tvosSimulatorArm64ApiElements", + "sourceSet": [ + "darwinMain", + "nativeMain", + "commonMain", + "nonAndroidMain" + ] + }, + { + "name": "tvosX64ApiElements", + "sourceSet": [ + "darwinMain", + "nativeMain", + "commonMain", + "nonAndroidMain" + ] + }, + { + "name": "wasmJsApiElements", + "sourceSet": [ + "webMain", + "nonAndroidMain", + "commonMain" + ] + }, + { + "name": "wasmJsRuntimeElements", + "sourceSet": [ + "webMain", + "nonAndroidMain", + "commonMain" + ] + }, + { + "name": "watchosArm32ApiElements", + "sourceSet": [ + "darwinMain", + "nativeMain", + "commonMain", + "nonAndroidMain" + ] + }, + { + "name": "watchosArm64ApiElements", + "sourceSet": [ + "darwinMain", + "nativeMain", + "commonMain", + "nonAndroidMain" + ] + }, + { + "name": "watchosDeviceArm64ApiElements", + "sourceSet": [ + "darwinMain", + "nativeMain", + "commonMain", + "nonAndroidMain" + ] + }, + { + "name": "watchosSimulatorArm64ApiElements", + "sourceSet": [ + "darwinMain", + "nativeMain", + "commonMain", + "nonAndroidMain" + ] + }, + { + "name": "watchosX64ApiElements", + "sourceSet": [ + "darwinMain", + "nativeMain", + "commonMain", + "nonAndroidMain" + ] + } + ], + "sourceSets": [ + { + "name": "commonMain", + "dependsOn": [], + "moduleDependency": [ + "androidx.annotation:annotation", + "androidx.savedstate:savedstate", + "androidx.lifecycle:lifecycle-viewmodel", + "org.jetbrains.kotlin:kotlin-stdlib", + "org.jetbrains.kotlinx:kotlinx-coroutines-core", + "org.jetbrains.kotlinx:kotlinx-serialization-core", + "androidx.lifecycle:lifecycle-common" + ], + "binaryLayout": "klib" + }, + { + "name": "darwinMain", + "dependsOn": [ + "nativeMain" + ], + "moduleDependency": [ + "androidx.annotation:annotation", + "androidx.savedstate:savedstate", + "androidx.lifecycle:lifecycle-viewmodel", + "org.jetbrains.kotlinx:kotlinx-coroutines-core", + "org.jetbrains.kotlinx:kotlinx-serialization-core", + "androidx.lifecycle:lifecycle-common" + ], + "sourceSetCInteropMetadataDirectory": "darwinMain-cinterop", + "binaryLayout": "klib", + "hostSpecific": "true" + }, + { + "name": "jvmMain", + "dependsOn": [ + "commonMain" + ], + "moduleDependency": [ + "androidx.annotation:annotation", + "androidx.savedstate:savedstate", + "androidx.lifecycle:lifecycle-viewmodel", + "org.jetbrains.kotlin:kotlin-stdlib", + "org.jetbrains.kotlinx:kotlinx-coroutines-core", + "org.jetbrains.kotlinx:kotlinx-serialization-core", + "androidx.lifecycle:lifecycle-common" + ], + "binaryLayout": "klib" + }, + { + "name": "linuxMain", + "dependsOn": [ + "nativeMain" + ], + "moduleDependency": [ + "androidx.annotation:annotation", + "androidx.savedstate:savedstate", + "androidx.lifecycle:lifecycle-viewmodel", + "org.jetbrains.kotlinx:kotlinx-coroutines-core", + "org.jetbrains.kotlinx:kotlinx-serialization-core", + "androidx.lifecycle:lifecycle-common" + ], + "sourceSetCInteropMetadataDirectory": "linuxMain-cinterop", + "binaryLayout": "klib" + }, + { + "name": "nativeMain", + "dependsOn": [ + "commonMain", + "nonAndroidMain" + ], + "moduleDependency": [ + "androidx.annotation:annotation", + "androidx.savedstate:savedstate", + "androidx.lifecycle:lifecycle-viewmodel", + "org.jetbrains.kotlinx:kotlinx-coroutines-core", + "org.jetbrains.kotlinx:kotlinx-serialization-core", + "androidx.lifecycle:lifecycle-common" + ], + "sourceSetCInteropMetadataDirectory": "nativeMain-cinterop", + "binaryLayout": "klib" + }, + { + "name": "nonAndroidMain", + "dependsOn": [ + "commonMain" + ], + "moduleDependency": [ + "androidx.annotation:annotation", + "androidx.savedstate:savedstate", + "androidx.lifecycle:lifecycle-viewmodel", + "org.jetbrains.kotlin:kotlin-stdlib", + "org.jetbrains.kotlinx:kotlinx-coroutines-core", + "org.jetbrains.kotlinx:kotlinx-serialization-core", + "androidx.lifecycle:lifecycle-common" + ], + "binaryLayout": "klib" + }, + { + "name": "webMain", + "dependsOn": [ + "nonAndroidMain" + ], + "moduleDependency": [ + "androidx.annotation:annotation", + "androidx.savedstate:savedstate", + "androidx.lifecycle:lifecycle-viewmodel", + "org.jetbrains.kotlin:kotlin-stdlib", + "org.jetbrains.kotlinx:kotlinx-coroutines-core", + "org.jetbrains.kotlinx:kotlinx-serialization-core", + "androidx.lifecycle:lifecycle-common" + ], + "binaryLayout": "klib" + } + ] + } +} \ No newline at end of file diff --git a/composeApp/build/tmp/.cache/expanded/zip_e17eaf8f85f9b47cad90e02397741c0d/META-INF/kotlin-project-structure-metadata.json b/composeApp/build/tmp/.cache/expanded/zip_e17eaf8f85f9b47cad90e02397741c0d/META-INF/kotlin-project-structure-metadata.json new file mode 100644 index 0000000..097a623 --- /dev/null +++ b/composeApp/build/tmp/.cache/expanded/zip_e17eaf8f85f9b47cad90e02397741c0d/META-INF/kotlin-project-structure-metadata.json @@ -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" + } + ] + } +} \ No newline at end of file diff --git a/composeApp/build/tmp/.cache/expanded/zip_e2eafe826fe79d5a930cdf38ba87639c/META-INF/kotlin-project-structure-metadata.json b/composeApp/build/tmp/.cache/expanded/zip_e2eafe826fe79d5a930cdf38ba87639c/META-INF/kotlin-project-structure-metadata.json new file mode 100644 index 0000000..da9c679 --- /dev/null +++ b/composeApp/build/tmp/.cache/expanded/zip_e2eafe826fe79d5a930cdf38ba87639c/META-INF/kotlin-project-structure-metadata.json @@ -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" + } + ] + } +} \ No newline at end of file diff --git a/composeApp/build/tmp/.cache/expanded/zip_e3ba6acb4862818f6408386f49b11c28/META-INF/kotlin-project-structure-metadata.json b/composeApp/build/tmp/.cache/expanded/zip_e3ba6acb4862818f6408386f49b11c28/META-INF/kotlin-project-structure-metadata.json new file mode 100644 index 0000000..0221566 --- /dev/null +++ b/composeApp/build/tmp/.cache/expanded/zip_e3ba6acb4862818f6408386f49b11c28/META-INF/kotlin-project-structure-metadata.json @@ -0,0 +1,257 @@ +{ + "projectStructure": { + "formatVersion": "0.3.3", + "isPublishedAsRoot": "true", + "variants": [ + { + "name": "releaseApiElements", + "sourceSet": [ + "jvmMain", + "commonMain" + ] + }, + { + "name": "releaseRuntimeElements", + "sourceSet": [ + "jvmMain", + "commonMain" + ] + }, + { + "name": "desktopApiElements", + "sourceSet": [ + "jvmMain", + "commonMain" + ] + }, + { + "name": "desktopRuntimeElements", + "sourceSet": [ + "jvmMain", + "commonMain" + ] + }, + { + "name": "iosArm64ApiElements", + "sourceSet": [ + "nativeMain", + "nonJvmMain", + "commonMain" + ] + }, + { + "name": "iosSimulatorArm64ApiElements", + "sourceSet": [ + "nativeMain", + "nonJvmMain", + "commonMain" + ] + }, + { + "name": "iosX64ApiElements", + "sourceSet": [ + "nativeMain", + "nonJvmMain", + "commonMain" + ] + }, + { + "name": "jsApiElements", + "sourceSet": [ + "webMain", + "nonJvmMain", + "commonMain" + ] + }, + { + "name": "jsRuntimeElements", + "sourceSet": [ + "webMain", + "nonJvmMain", + "commonMain" + ] + }, + { + "name": "linuxArm64ApiElements", + "sourceSet": [ + "nativeMain", + "nonJvmMain", + "commonMain" + ] + }, + { + "name": "linuxX64ApiElements", + "sourceSet": [ + "nativeMain", + "nonJvmMain", + "commonMain" + ] + }, + { + "name": "macosArm64ApiElements", + "sourceSet": [ + "nativeMain", + "nonJvmMain", + "commonMain" + ] + }, + { + "name": "macosX64ApiElements", + "sourceSet": [ + "nativeMain", + "nonJvmMain", + "commonMain" + ] + }, + { + "name": "mingwX64ApiElements", + "sourceSet": [ + "nativeMain", + "nonJvmMain", + "commonMain" + ] + }, + { + "name": "tvosArm64ApiElements", + "sourceSet": [ + "nativeMain", + "nonJvmMain", + "commonMain" + ] + }, + { + "name": "tvosSimulatorArm64ApiElements", + "sourceSet": [ + "nativeMain", + "nonJvmMain", + "commonMain" + ] + }, + { + "name": "tvosX64ApiElements", + "sourceSet": [ + "nativeMain", + "nonJvmMain", + "commonMain" + ] + }, + { + "name": "wasmJsApiElements", + "sourceSet": [ + "webMain", + "nonJvmMain", + "commonMain" + ] + }, + { + "name": "wasmJsRuntimeElements", + "sourceSet": [ + "webMain", + "nonJvmMain", + "commonMain" + ] + }, + { + "name": "watchosArm32ApiElements", + "sourceSet": [ + "nativeMain", + "nonJvmMain", + "commonMain" + ] + }, + { + "name": "watchosArm64ApiElements", + "sourceSet": [ + "nativeMain", + "nonJvmMain", + "commonMain" + ] + }, + { + "name": "watchosDeviceArm64ApiElements", + "sourceSet": [ + "nativeMain", + "nonJvmMain", + "commonMain" + ] + }, + { + "name": "watchosSimulatorArm64ApiElements", + "sourceSet": [ + "nativeMain", + "nonJvmMain", + "commonMain" + ] + }, + { + "name": "watchosX64ApiElements", + "sourceSet": [ + "nativeMain", + "nonJvmMain", + "commonMain" + ] + } + ], + "sourceSets": [ + { + "name": "commonMain", + "dependsOn": [], + "moduleDependency": [ + "org.jetbrains.kotlin:kotlin-stdlib", + "androidx.lifecycle:lifecycle-common", + "androidx.annotation:annotation" + ], + "binaryLayout": "klib" + }, + { + "name": "jvmMain", + "dependsOn": [ + "commonMain" + ], + "moduleDependency": [ + "org.jetbrains.kotlin:kotlin-stdlib", + "androidx.lifecycle:lifecycle-common", + "androidx.annotation:annotation", + "androidx.arch.core:core-common" + ], + "binaryLayout": "klib" + }, + { + "name": "nativeMain", + "dependsOn": [ + "nonJvmMain" + ], + "moduleDependency": [ + "androidx.lifecycle:lifecycle-common", + "androidx.annotation:annotation" + ], + "sourceSetCInteropMetadataDirectory": "nativeMain-cinterop", + "binaryLayout": "klib" + }, + { + "name": "nonJvmMain", + "dependsOn": [ + "commonMain" + ], + "moduleDependency": [ + "org.jetbrains.kotlin:kotlin-stdlib", + "androidx.lifecycle:lifecycle-common", + "androidx.annotation:annotation" + ], + "binaryLayout": "klib" + }, + { + "name": "webMain", + "dependsOn": [ + "nonJvmMain" + ], + "moduleDependency": [ + "org.jetbrains.kotlin:kotlin-stdlib", + "androidx.lifecycle:lifecycle-common", + "androidx.annotation:annotation" + ], + "binaryLayout": "klib" + } + ] + } +} \ No newline at end of file diff --git a/composeApp/build/tmp/.cache/expanded/zip_e549716c7cf992dc0f6f11188646aa15/META-INF/kotlin-project-structure-metadata.json b/composeApp/build/tmp/.cache/expanded/zip_e549716c7cf992dc0f6f11188646aa15/META-INF/kotlin-project-structure-metadata.json new file mode 100644 index 0000000..42abc7e --- /dev/null +++ b/composeApp/build/tmp/.cache/expanded/zip_e549716c7cf992dc0f6f11188646aa15/META-INF/kotlin-project-structure-metadata.json @@ -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" + } + ] + } +} \ No newline at end of file diff --git a/composeApp/build/tmp/.cache/expanded/zip_f0f301445155781f9a42f3e850433374/META-INF/kotlin-project-structure-metadata.json b/composeApp/build/tmp/.cache/expanded/zip_f0f301445155781f9a42f3e850433374/META-INF/kotlin-project-structure-metadata.json new file mode 100644 index 0000000..9224841 --- /dev/null +++ b/composeApp/build/tmp/.cache/expanded/zip_f0f301445155781f9a42f3e850433374/META-INF/kotlin-project-structure-metadata.json @@ -0,0 +1,323 @@ +{ + "projectStructure": { + "formatVersion": "0.3.3", + "isPublishedAsRoot": "true", + "variants": [ + { + "name": "releaseApiElements", + "sourceSet": [ + "jvmMain", + "commonMain" + ] + }, + { + "name": "releaseRuntimeElements", + "sourceSet": [ + "jvmMain", + "commonMain" + ] + }, + { + "name": "desktopApiElements", + "sourceSet": [ + "jvmMain", + "commonMain" + ] + }, + { + "name": "desktopRuntimeElements", + "sourceSet": [ + "jvmMain", + "commonMain" + ] + }, + { + "name": "iosArm64ApiElements", + "sourceSet": [ + "darwinMain", + "unixMain", + "nativeMain", + "nonJvmMain", + "commonMain" + ] + }, + { + "name": "iosSimulatorArm64ApiElements", + "sourceSet": [ + "darwinMain", + "unixMain", + "nativeMain", + "nonJvmMain", + "commonMain" + ] + }, + { + "name": "iosX64ApiElements", + "sourceSet": [ + "darwinMain", + "unixMain", + "nativeMain", + "nonJvmMain", + "commonMain" + ] + }, + { + "name": "jsApiElements", + "sourceSet": [ + "webMain", + "nonJvmMain", + "commonMain" + ] + }, + { + "name": "jsRuntimeElements", + "sourceSet": [ + "webMain", + "nonJvmMain", + "commonMain" + ] + }, + { + "name": "linuxArm64ApiElements", + "sourceSet": [ + "linuxMain", + "unixMain", + "nativeMain", + "nonJvmMain", + "commonMain" + ] + }, + { + "name": "linuxX64ApiElements", + "sourceSet": [ + "linuxMain", + "unixMain", + "nativeMain", + "nonJvmMain", + "commonMain" + ] + }, + { + "name": "macosArm64ApiElements", + "sourceSet": [ + "darwinMain", + "unixMain", + "nativeMain", + "nonJvmMain", + "commonMain" + ] + }, + { + "name": "macosX64ApiElements", + "sourceSet": [ + "darwinMain", + "unixMain", + "nativeMain", + "nonJvmMain", + "commonMain" + ] + }, + { + "name": "mingwX64ApiElements", + "sourceSet": [ + "nativeMain", + "nonJvmMain", + "commonMain" + ] + }, + { + "name": "tvosArm64ApiElements", + "sourceSet": [ + "darwinMain", + "unixMain", + "nativeMain", + "nonJvmMain", + "commonMain" + ] + }, + { + "name": "tvosSimulatorArm64ApiElements", + "sourceSet": [ + "darwinMain", + "unixMain", + "nativeMain", + "nonJvmMain", + "commonMain" + ] + }, + { + "name": "tvosX64ApiElements", + "sourceSet": [ + "darwinMain", + "unixMain", + "nativeMain", + "nonJvmMain", + "commonMain" + ] + }, + { + "name": "wasmJsApiElements", + "sourceSet": [ + "webMain", + "nonJvmMain", + "commonMain" + ] + }, + { + "name": "wasmJsRuntimeElements", + "sourceSet": [ + "webMain", + "nonJvmMain", + "commonMain" + ] + }, + { + "name": "watchosArm32ApiElements", + "sourceSet": [ + "darwinMain", + "unixMain", + "nativeMain", + "nonJvmMain", + "commonMain" + ] + }, + { + "name": "watchosArm64ApiElements", + "sourceSet": [ + "darwinMain", + "unixMain", + "nativeMain", + "nonJvmMain", + "commonMain" + ] + }, + { + "name": "watchosDeviceArm64ApiElements", + "sourceSet": [ + "darwinMain", + "unixMain", + "nativeMain", + "nonJvmMain", + "commonMain" + ] + }, + { + "name": "watchosSimulatorArm64ApiElements", + "sourceSet": [ + "darwinMain", + "unixMain", + "nativeMain", + "nonJvmMain", + "commonMain" + ] + }, + { + "name": "watchosX64ApiElements", + "sourceSet": [ + "darwinMain", + "unixMain", + "nativeMain", + "nonJvmMain", + "commonMain" + ] + } + ], + "sourceSets": [ + { + "name": "commonMain", + "dependsOn": [], + "moduleDependency": [ + "androidx.annotation:annotation", + "org.jetbrains.kotlin:kotlin-stdlib", + "org.jetbrains.kotlinx:kotlinx-coroutines-core" + ], + "binaryLayout": "klib" + }, + { + "name": "darwinMain", + "dependsOn": [ + "unixMain" + ], + "moduleDependency": [ + "androidx.annotation:annotation", + "org.jetbrains.kotlinx:kotlinx-coroutines-core" + ], + "sourceSetCInteropMetadataDirectory": "darwinMain-cinterop", + "binaryLayout": "klib", + "hostSpecific": "true" + }, + { + "name": "jvmMain", + "dependsOn": [ + "commonMain" + ], + "moduleDependency": [ + "androidx.annotation:annotation", + "org.jetbrains.kotlin:kotlin-stdlib", + "org.jetbrains.kotlinx:kotlinx-coroutines-core" + ], + "binaryLayout": "klib" + }, + { + "name": "linuxMain", + "dependsOn": [ + "unixMain" + ], + "moduleDependency": [ + "androidx.annotation:annotation", + "org.jetbrains.kotlinx:kotlinx-coroutines-core" + ], + "sourceSetCInteropMetadataDirectory": "linuxMain-cinterop", + "binaryLayout": "klib" + }, + { + "name": "nativeMain", + "dependsOn": [ + "nonJvmMain" + ], + "moduleDependency": [ + "androidx.annotation:annotation", + "org.jetbrains.kotlinx:kotlinx-coroutines-core" + ], + "sourceSetCInteropMetadataDirectory": "nativeMain-cinterop", + "binaryLayout": "klib" + }, + { + "name": "nonJvmMain", + "dependsOn": [ + "commonMain" + ], + "moduleDependency": [ + "androidx.annotation:annotation", + "org.jetbrains.kotlin:kotlin-stdlib", + "org.jetbrains.kotlinx:kotlinx-coroutines-core" + ], + "binaryLayout": "klib" + }, + { + "name": "unixMain", + "dependsOn": [ + "nativeMain" + ], + "moduleDependency": [ + "androidx.annotation:annotation", + "org.jetbrains.kotlinx:kotlinx-coroutines-core" + ], + "sourceSetCInteropMetadataDirectory": "unixMain-cinterop", + "binaryLayout": "klib" + }, + { + "name": "webMain", + "dependsOn": [ + "nonJvmMain" + ], + "moduleDependency": [ + "androidx.annotation:annotation", + "org.jetbrains.kotlin:kotlin-stdlib", + "org.jetbrains.kotlinx:kotlinx-coroutines-core" + ], + "binaryLayout": "klib" + } + ] + } +} \ No newline at end of file diff --git a/composeApp/build/tmp/.cache/expanded/zip_f4b70111db6f83f60ac6ab9038b08d88/META-INF/kotlin-project-structure-metadata.json b/composeApp/build/tmp/.cache/expanded/zip_f4b70111db6f83f60ac6ab9038b08d88/META-INF/kotlin-project-structure-metadata.json new file mode 100644 index 0000000..a9a9dd6 --- /dev/null +++ b/composeApp/build/tmp/.cache/expanded/zip_f4b70111db6f83f60ac6ab9038b08d88/META-INF/kotlin-project-structure-metadata.json @@ -0,0 +1,319 @@ +{ + "projectStructure": { + "formatVersion": "0.3.3", + "isPublishedAsRoot": "true", + "variants": [ + { + "name": "debugApiElements", + "sourceSet": [ + "jvmMain", + "commonMain" + ] + }, + { + "name": "debugRuntimeElements", + "sourceSet": [ + "jvmMain", + "commonMain" + ] + }, + { + "name": "releaseApiElements", + "sourceSet": [ + "jvmMain", + "commonMain" + ] + }, + { + "name": "releaseRuntimeElements", + "sourceSet": [ + "jvmMain", + "commonMain" + ] + }, + { + "name": "desktopApiElements", + "sourceSet": [ + "jvmMain", + "commonMain", + "nonAndroidMain" + ] + }, + { + "name": "desktopRuntimeElements", + "sourceSet": [ + "jvmMain", + "commonMain", + "nonAndroidMain" + ] + }, + { + "name": "jsApiElements", + "sourceSet": [ + "commonMain", + "nonAndroidMain" + ] + }, + { + "name": "jsRuntimeElements", + "sourceSet": [ + "commonMain", + "nonAndroidMain" + ] + }, + { + "name": "linuxArm64ApiElements", + "sourceSet": [ + "linuxMain", + "nativeMain", + "commonMain", + "nonAndroidMain" + ] + }, + { + "name": "linuxX64ApiElements", + "sourceSet": [ + "linuxMain", + "nativeMain", + "commonMain", + "nonAndroidMain" + ] + }, + { + "name": "macosArm64ApiElements", + "sourceSet": [ + "macosMain", + "darwinMain", + "nativeMain", + "commonMain", + "nonAndroidMain" + ] + }, + { + "name": "macosX64ApiElements", + "sourceSet": [ + "macosMain", + "darwinMain", + "nativeMain", + "commonMain", + "nonAndroidMain" + ] + }, + { + "name": "mingwX64ApiElements", + "sourceSet": [ + "nonAndroidMain", + "commonMain" + ] + }, + { + "name": "tvosArm64ApiElements", + "sourceSet": [ + "nonAndroidMain", + "commonMain" + ] + }, + { + "name": "tvosSimulatorArm64ApiElements", + "sourceSet": [ + "nonAndroidMain", + "commonMain" + ] + }, + { + "name": "tvosX64ApiElements", + "sourceSet": [ + "nonAndroidMain", + "commonMain" + ] + }, + { + "name": "uikitArm64ApiElements", + "sourceSet": [ + "uikitMain", + "darwinMain", + "nativeMain", + "commonMain", + "nonAndroidMain" + ] + }, + { + "name": "uikitSimArm64ApiElements", + "sourceSet": [ + "uikitMain", + "darwinMain", + "nativeMain", + "commonMain", + "nonAndroidMain" + ] + }, + { + "name": "uikitX64ApiElements", + "sourceSet": [ + "uikitMain", + "darwinMain", + "nativeMain", + "commonMain", + "nonAndroidMain" + ] + }, + { + "name": "wasmJsApiElements", + "sourceSet": [ + "commonMain", + "nonAndroidMain" + ] + }, + { + "name": "wasmJsRuntimeElements", + "sourceSet": [ + "commonMain", + "nonAndroidMain" + ] + }, + { + "name": "watchosArm32ApiElements", + "sourceSet": [ + "nonAndroidMain", + "commonMain" + ] + }, + { + "name": "watchosArm64ApiElements", + "sourceSet": [ + "nonAndroidMain", + "commonMain" + ] + }, + { + "name": "watchosSimulatorArm64ApiElements", + "sourceSet": [ + "nonAndroidMain", + "commonMain" + ] + }, + { + "name": "watchosX64ApiElements", + "sourceSet": [ + "nonAndroidMain", + "commonMain" + ] + } + ], + "sourceSets": [ + { + "name": "commonMain", + "dependsOn": [], + "moduleDependency": [ + "org.jetbrains.compose.annotation-internal:annotation", + "org.jetbrains.androidx.lifecycle:lifecycle-runtime", + "org.jetbrains.compose.runtime:runtime", + "org.jetbrains.androidx.lifecycle:lifecycle-common", + "org.jetbrains.kotlin:kotlin-stdlib" + ], + "binaryLayout": "klib" + }, + { + "name": "darwinMain", + "dependsOn": [ + "nativeMain" + ], + "moduleDependency": [ + "org.jetbrains.compose.annotation-internal:annotation", + "org.jetbrains.androidx.lifecycle:lifecycle-runtime", + "org.jetbrains.compose.runtime:runtime", + "org.jetbrains.androidx.lifecycle:lifecycle-common" + ], + "sourceSetCInteropMetadataDirectory": "darwinMain-cinterop", + "binaryLayout": "klib", + "hostSpecific": "true" + }, + { + "name": "jvmMain", + "dependsOn": [ + "commonMain" + ], + "moduleDependency": [ + "org.jetbrains.compose.annotation-internal:annotation", + "org.jetbrains.androidx.lifecycle:lifecycle-runtime", + "org.jetbrains.compose.runtime:runtime", + "org.jetbrains.androidx.lifecycle:lifecycle-common", + "org.jetbrains.kotlin:kotlin-stdlib" + ], + "binaryLayout": "klib" + }, + { + "name": "linuxMain", + "dependsOn": [ + "nativeMain" + ], + "moduleDependency": [ + "org.jetbrains.compose.annotation-internal:annotation", + "org.jetbrains.androidx.lifecycle:lifecycle-runtime", + "org.jetbrains.compose.runtime:runtime", + "org.jetbrains.androidx.lifecycle:lifecycle-common" + ], + "sourceSetCInteropMetadataDirectory": "linuxMain-cinterop", + "binaryLayout": "klib" + }, + { + "name": "macosMain", + "dependsOn": [ + "darwinMain" + ], + "moduleDependency": [ + "org.jetbrains.compose.annotation-internal:annotation", + "org.jetbrains.androidx.lifecycle:lifecycle-runtime", + "org.jetbrains.compose.runtime:runtime", + "org.jetbrains.androidx.lifecycle:lifecycle-common" + ], + "sourceSetCInteropMetadataDirectory": "macosMain-cinterop", + "binaryLayout": "klib", + "hostSpecific": "true" + }, + { + "name": "nativeMain", + "dependsOn": [ + "commonMain" + ], + "moduleDependency": [ + "org.jetbrains.compose.annotation-internal:annotation", + "org.jetbrains.androidx.lifecycle:lifecycle-runtime", + "org.jetbrains.compose.runtime:runtime", + "org.jetbrains.androidx.lifecycle:lifecycle-common" + ], + "sourceSetCInteropMetadataDirectory": "nativeMain-cinterop", + "binaryLayout": "klib" + }, + { + "name": "nonAndroidMain", + "dependsOn": [ + "commonMain" + ], + "moduleDependency": [ + "org.jetbrains.compose.annotation-internal:annotation", + "org.jetbrains.androidx.lifecycle:lifecycle-runtime", + "org.jetbrains.compose.runtime:runtime", + "org.jetbrains.androidx.lifecycle:lifecycle-common", + "org.jetbrains.kotlin:kotlin-stdlib" + ], + "binaryLayout": "klib" + }, + { + "name": "uikitMain", + "dependsOn": [ + "darwinMain" + ], + "moduleDependency": [ + "org.jetbrains.compose.annotation-internal:annotation", + "org.jetbrains.androidx.lifecycle:lifecycle-runtime", + "org.jetbrains.compose.runtime:runtime", + "org.jetbrains.androidx.lifecycle:lifecycle-common" + ], + "sourceSetCInteropMetadataDirectory": "uikitMain-cinterop", + "binaryLayout": "klib", + "hostSpecific": "true" + } + ] + } +} \ No newline at end of file diff --git a/composeApp/build/tmp/.cache/expanded/zip_f67e8f3c0084dc9d854416c25afa68b7/META-INF/kotlin-project-structure-metadata.json b/composeApp/build/tmp/.cache/expanded/zip_f67e8f3c0084dc9d854416c25afa68b7/META-INF/kotlin-project-structure-metadata.json new file mode 100644 index 0000000..87760ae --- /dev/null +++ b/composeApp/build/tmp/.cache/expanded/zip_f67e8f3c0084dc9d854416c25afa68b7/META-INF/kotlin-project-structure-metadata.json @@ -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" + } + ] + } +} \ No newline at end of file diff --git a/composeApp/src/androidMain/AndroidManifest.xml b/composeApp/src/androidMain/AndroidManifest.xml new file mode 100644 index 0000000..26403a7 --- /dev/null +++ b/composeApp/src/androidMain/AndroidManifest.xml @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/composeApp/src/androidMain/kotlin/dev/carlosmartino/triplogic/MainActivity.kt b/composeApp/src/androidMain/kotlin/dev/carlosmartino/triplogic/MainActivity.kt new file mode 100644 index 0000000..2805db0 --- /dev/null +++ b/composeApp/src/androidMain/kotlin/dev/carlosmartino/triplogic/MainActivity.kt @@ -0,0 +1,25 @@ +package dev.carlosmartino.triplogic + +import android.os.Bundle +import androidx.activity.ComponentActivity +import androidx.activity.compose.setContent +import androidx.activity.enableEdgeToEdge +import androidx.compose.runtime.Composable +import androidx.compose.ui.tooling.preview.Preview + +class MainActivity : ComponentActivity() { + override fun onCreate(savedInstanceState: Bundle?) { + enableEdgeToEdge() + super.onCreate(savedInstanceState) + + setContent { + App() + } + } +} + +@Preview +@Composable +fun AppAndroidPreview() { + App() +} \ No newline at end of file diff --git a/composeApp/src/androidMain/kotlin/dev/carlosmartino/triplogic/Platform.android.kt b/composeApp/src/androidMain/kotlin/dev/carlosmartino/triplogic/Platform.android.kt new file mode 100644 index 0000000..2fee6d6 --- /dev/null +++ b/composeApp/src/androidMain/kotlin/dev/carlosmartino/triplogic/Platform.android.kt @@ -0,0 +1,9 @@ +package dev.carlosmartino.triplogic + +import android.os.Build + +class AndroidPlatform : Platform { + override val name: String = "Android ${Build.VERSION.SDK_INT}" +} + +actual fun getPlatform(): Platform = AndroidPlatform() \ No newline at end of file diff --git a/composeApp/src/androidMain/res/drawable-v24/ic_launcher_foreground.xml b/composeApp/src/androidMain/res/drawable-v24/ic_launcher_foreground.xml new file mode 100644 index 0000000..2b068d1 --- /dev/null +++ b/composeApp/src/androidMain/res/drawable-v24/ic_launcher_foreground.xml @@ -0,0 +1,30 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/composeApp/src/androidMain/res/drawable/ic_launcher_background.xml b/composeApp/src/androidMain/res/drawable/ic_launcher_background.xml new file mode 100644 index 0000000..e93e11a --- /dev/null +++ b/composeApp/src/androidMain/res/drawable/ic_launcher_background.xml @@ -0,0 +1,170 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/composeApp/src/androidMain/res/mipmap-anydpi-v26/ic_launcher.xml b/composeApp/src/androidMain/res/mipmap-anydpi-v26/ic_launcher.xml new file mode 100644 index 0000000..eca70cf --- /dev/null +++ b/composeApp/src/androidMain/res/mipmap-anydpi-v26/ic_launcher.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/composeApp/src/androidMain/res/mipmap-anydpi-v26/ic_launcher_round.xml b/composeApp/src/androidMain/res/mipmap-anydpi-v26/ic_launcher_round.xml new file mode 100644 index 0000000..eca70cf --- /dev/null +++ b/composeApp/src/androidMain/res/mipmap-anydpi-v26/ic_launcher_round.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/composeApp/src/androidMain/res/mipmap-hdpi/ic_launcher.png b/composeApp/src/androidMain/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 0000000000000000000000000000000000000000..a571e60098c92c2baca8a5df62f2929cbff01b52 GIT binary patch literal 3593 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 P00000NkvXXu0mjfP=x?Y literal 0 HcmV?d00001 diff --git a/composeApp/src/androidMain/res/mipmap-hdpi/ic_launcher_round.png b/composeApp/src/androidMain/res/mipmap-hdpi/ic_launcher_round.png new file mode 100644 index 0000000000000000000000000000000000000000..61da551c5594a1f9d26193983d2cd69189014603 GIT binary patch literal 5339 zcmV<16eR13P)Id|UZ0P}EI-1@)I=X~DGdw1?T_xsK{_uTvL8wG`@xdHSL zi(gOK!kzzrvteWHAo2y%6u%c~FYnJ<{N`T=3@w2g$1Fm|W?3HbvT3QGvT;S=yZYsV z;Ux5#j?uZ!)cIU&lDjT_%=}{Tn4nc%?;kSe8vq_&%eGAXoY=)gfJHN3HRxZ>B(Z_MschsoM6AUCjPu&A03`pU`P@H& z-Hldo)2LhkOv(g+79zsWLK6F$uY^-8!$ow=uuO2jh2SxRvH;PPs;xr%>aSRNI!<*k zq54?efxFGi!}O%x@0qhGX;;FAnHp6DCoZk~0VY&zmNZ7(K!PJ_APP1drc`bP>0_;h z&Qm$bcWJm(}i`WLgp2 zB!Saf;inDgfjrc$$+TEt@mPcR1IsBF%ve$XBbby0fpkyuOahYhptv_F4TPl^cFuY% z?j|wKCAHsATwcEiKD!!=-Rcj*rL{kREWvXSay1%O)$IkoG9;U>9D$AX2iq+}=c!zK zW#~F|y=6S-m(=bSuBh7sp;w||;ji02=~j1>n56y%KZ-d`CU}*Vr4Kbx#$l%nQktf zay7|dPxqqVP#g?4KFBTpC4g94a7d(I?Axdoz50FWHg^b+VQIjj*168V!-BZvwln~A zbKH-RtH}*WGN*#QmN8LoJ=px$01}Vc?i>8J3A9hHnIyNX`EfxD=_YXVIKs{VT3Ndn zW>tOBQlZBH$fP_7=2U+P&b2>w91zzwom{tMxdOJt%p6O<(sru*9vm-yM{=LrGg*A; zdzO^ZUi!GSIH4T8kpm@-mto`OgS_RuFCT{W^#^#*lhAo8$9JBR$l9jsaNtH3yDncj z9=-2VI~SII2{y5Q#*d6e5)(5m5qxJ>5ez6o)AC@Dmht5wuo5#@bKJK+ClNCgSImHK z-n$L4f1hQ)kyUO%%{MT;DuTBj5;{-iWSt||N^Q6Z*Y7p3>zTDvk2$AzYh73y(Ykaq z-S$a`7~Y)6@=WksXsXwxd#=vLpuN{KnDUhFcejffqj+47gj>yxu;Skx*L=&ijF8^lE3`V9ohnj~S&~kFu#to{@S-dohp8hv1H|3H&ftNS7f~Utf0s z-0Ba3@0BRndhI0axt07RCPdAk(OH`c?f>Mvkw)i#6?2gwcRS#Z7G zd>2F_5wA3$3sv9!1Cnl?gV3unFu8II%&++xD(_x{jN2uw{;mRg;AZ(A*EBq*^_OPS zqW3b$^)#DVy#pT1?REno`cCElZvG#G)QHy99*{=~0lSF3y@HHeTsgFs+5^r|WbX5XGTV4F1VJhg!y=hf7Reuqp}5 zpjo-u)jNf=s&|4cp{$jH>RjCOm6?Yz;^2*JxF>3UtZ*dKh{2k!N7v=kX)dSt9Dcop zb81lcyzm@k@zO&sTre7HI`lsiOGC;R*6af7$}J)ahO)%EGMpu4HrV~jI&WLG9e&21 zsJmTC9+#u*QYRowFVdIvCjDi%>vNHH^;Vcw_<5!BNaa2c12vZv4G*(@+qhJ4jaHo2}dFnxWlf-cFM)5Co`@Hf~jXV|1r?XR4QTQ0IB`3a47oVt z|6g6V5B_<=meX43`m1qB(K;T<3&^(kvxbr0HY3{r`e4_B5m;#>1JsFb9^)44eq||r zPuL7M8yn#EKX0t_p#Y8CWhr{I@fJ*t_J%S09bnu6C)j^6u}gryx)1{z z$5(=Sv@^^~4S~O!WMB72Qv<9l`<`YFI~IeALT?Y=U_MF;khm8cvUXB`qZ0oP2Wc83 z#osChA)h-mVaA)Z1=J9Z_Mv4EQKU`0Hs=d~uWLHHTj8F9fi!(vsQuh;Y9yGaXi_p3%9HylQ<{^u|E!Jpr zY4t0U3I+e|NG9!Y>09{qPVF-dsPK9j%*YIZDH(y_R=OYc-^rUv&#w9c?Be_n6N?s8 z9^Am}C9TAD-W?gNlC}N*&tK0ppev0xU{3z$pqt_X^K-X=L7_MAVAb%vKN#(G4ki|| z2CFZAwC7VR2B_UZ-$Otf>JRYdBF~DDeyfUhfnJI$1Eib25%kY`Kj__9fTqtCfnZSN z3+h2LXA+B+vx;J0>)HR4aYLq;ZoMM!gxQvBC!T3I5(z4a1ie%O6wUzYWD+DFsT?SP zO_=Fqx?LS;{=o=h(dLy0j@WC~g~8Fxg5;QT4XloWxSBkOtLCIeEb%q@kX~C136}~W z{!;!!sV!(Bsr5yWTz3}Y>+pMBAtcndmE_Askap!)NVt3&60XRQ-_JnO?`I+V+IdLC z&xu#1<7WJTkCaZW%6ugjd1<_`8UKkBlY z0Le3HPfsN^POO44|8)?{0Y@fde{uqwC=bv&v>e7pE@q z8(`eg?mj^_Z1R%;MZ&a)J+NoLmJOajThV#;*a*1Wppyfh8O(*koU0dg@3+iTmx-3%pq!1D#A~P}?85fI(%ICB387Z+3225a;)w{qpIRI>qdBW1z zFqn4S2W*aeflag*Oo{OpORNt}IpG6SPx^vWVi?R%2m#ypO<Q@c_!eeohr+BJl-$n%^@rJc zVJrtCu`dV*&tLa~{pqb>e+K0&?Y9Z-i?)H~Pa86@&HYs@Enk**Wmz8;Un@HUbREg- z1@g`)8lLw9tyAk@>Tz$-j&g3}R?-3alM`NG7VFx^t)v68d7=kcC;PQ=D@iaWF-&oT zIoY3qPO3`_w|WqasawzTfQ4rwKtIO=-3r|-&;7n`p(ki!T?3by%%?VMEYXl}}eR0u~8-*>a7egC@(77 z0ebnKpj+S})JAty@v{!0HV(4Wd!;iAU3(}SjHJgO!_=c!#v7LSv(=#;ee_JLNvT1y zx^k;{AC~8|mjp6EsR6ujDCRIgc?gIH4#gY;w46o7Xh8+u&ARAjs=MYV(Zd|>5l<)I zq!ydq8;WngK2|GjL#6ng2SIa3pUo2_YEbJuhcaZ!bJ|M+3DA@@K^wP{&U1`1Ji$Jn z0J+J8Lovr7-wPaycQhMdw>~yi0A+MG*48?Xw#eSAWmkVP<>noS@arM=%bUAyX2#;LLWhoZSwe7Dd3P#rU~6 zqIuD8I~kmb8|JQ~HVif#{YH1fk!(F*8$FmR9;Ul?nv-6Z`z>y~#uj9EWSuk(aOv(_ zC;72FM|Kh@4$2eKFze0?lxaBoWI4n7 zst!_O^F5Dg>)A*91N!HK_XgOEvq9IWqHJ6I-g`jDUdcqLQ*%Qw&++2TkjbScru)Lw ztRP-E6myJoykY(s9EfsBAmuqag`OgEwJ`@5SG{TRkuB*wP^|l7e+#rlT(7;8E-aa$zBqnCzNuow4YP46D)HB_>({al(7k>W(V`ap_pTmi-6FrbZPj2 z88Rh-TKHSlukBAMzM`m2y7tw3yq41@CcU9CjNT?5i1N{h&C`OkQeFP0?wq|hUnXc? zTqECW;WlOAY<92p@IexgCuZV676I|WAuBP?^S(d-?6zjTLNCzCaRc>Z&VQ?TTWv<& z=w;r4oUTv&Ut@YGXbkApYlt!}dK{r-q%vvrUWXX!HRzc*`{#wqP@y5u%w&sYz~Yxm zWac@OGI5lj6Cx81rX3=h&oL?Rg#|_1(N)*MhhNNzRZ<^HFYu1&rQEAO>G(9@NN+Fp z`CuUV_F$TGd)LWu(YS+4(mpNPE;7FuBzC=uKoNVag0Q4#2BgKdwz1Fjw1=bRbtuz;rX1c3LE7MhE zk>xL(o*OD8C}=S>MarOPAw;#K&R0K-m=)Q7nkG$G(2|v5z2ENr&a+@OeA^33Ix2lR zwf~Hn)lLp7ENta?tmUvR#BG(^XESLpd z4eagIqL$Z>+GQU%++~u_tHb-5aTYVIm$GtyB^4z~{+^5f5_*9Ky1hSQ7WFPIKcaxy z=iRrAK6D)Kq!YFv%y|FGsF^4IbEc;RmRV)`Uzwa6c*D9N_!fy(j^M_GIFBpi53en= z*uO5v;_H=B8h$gwROT5uQ5~GMP@RLxYL!Q_LG|Pfr5(4%amYp?ni6?hSP#J z>irZI7001yQKOYK-kbQA?r=*I`b@|0oFR%gg(T*i>$J5J1p#4~U6HrAJQS4rYPAy^-!I;eb$Kms1miPp znxu9z(fBqhs4PKV3X42eMfL^am?*ly8X6;V=hyFCxI1@I!=f1d!=3rfz31$AzVkch zp7VX*?j1Mo)#oMtMB>2sS>>u9y+{y;Q4?1|^+Uo-lgUx>5e@WdRZozbvM0%m8E+E& zjRkKC_X0v6qoZ;DkLX5cPgn9y9K?woG4pg)e7W~$bKAG=@-t=M@-yXF2!W6TfI}+35(&+V>#9m}{q7V15swrfqgQl1VStksa9&pOgHMKd~-Qm-SCZ z?FUZ`Kxmd(TGg-o^jTfLhHOaM(jG_+>6}EL#`zf3T%@UpzZWCQyq%NjGwgI>rUEX| zm}93Sne<{E*^&M5Imr+C<9#y@UWRncZce-7vTxrjO={uAC4C?NeF@U!V|2oB?0Q~j2J#&otpvOoP5rT|)SY+M_K^CyIeK-7B zjf!=V=Iu~0vSJ;{q!;VRj_ileNq)#5-4h2NV-^Bh)V)r5OaDA#0B)bInH**;>{;Bg zn;dcx?eBrGsACsab$$pz7O=MSV=QdnVW)fN`UhCnvByqFGU>%SvLpN9bCMtONB6`b zvV)CnE$*G+NC5N%Ue+FPdKJK{0KSI+q^yaogge_O~^OwkSt)o zr543qrFOb^JO7R4*Wb6(kxY6)j$+t-rwpH1svnt?{E$C>9ODpmeJ2*R?r^+`ef2p# zlrfnhgOeLFL7*j%&-RckV14I*Q1i7O^Vt$9=;oPWE-_fv=$bgLLmaw&*vbgESe-U?cKQ`Rhht-`Q@p}56 zi0!jf@^&vp4}`GVK7X$j`L|BtbZ-+nzU@L!e;>Xb=m*DfxIgd!-Thzl`eQv>6y83K zYWCE~?u7>sWggs&4EMj{$vO%ePj+NKrUB4StS}VxP>qI}w{fB7A`l|^9rj-kWJ0*P z7$4oKVA<^(6?p+L-Pr9lOM&}fOMOO2E^!4Aj>2KV> z3x9pi^ACWQ!M$wB6qD+--bTRD7_2y#%Lnsa0rd5MgB4YU2rg6NX5U@A?{-};fmdtV zvo`T}_W*5J=KHtpOM+#!z4uGp>a#dhLSOx_8y)vMp}hv zV{)|CM+=&F?WH|fqAf&(vH0m$p^-{x`|Z-_LS8_={s`t&svx_V1ZivP*!RHBo26*H ztsjB`x-K&sy9|T4Loh;j*No=7CN$nP+R$P#LuYA6lf^WMZWEfj&A8HY9ZfxE8@3sa zA-F0P(y9b_)Fs06TI$#aAZbxz`mt4T`sD9Cd_LO*=L7%1w9i&z+Cg?b^e*JbHpBDy z1~zUroKLKQ^XF?JJ+&FLOXJ{DvK})^H(utKf2o;qYp>99fOoC!*nX zf{{A04z8cChwG{Jke5co?`#6xN;ks&>?WSPrzRR96{(n69u1E#V&HK;7M@jc2&v70 zye1i*wd^TeOys1EO87QsjP37%NPRH^PA6c&aU}wd#lr7+Ec{Qz!T)4DB1%*UEm0z{ zG!cPkk`Qz*8R42VM3t)%tWmP8s}RhHhn!Ex-)ah>s7{BXCIcZCG7)-Fjpf>6L^R|g ztRV;U8nd~1O}SX8%^mw6^^z+p1ePSQ%&)@qBMe7Z^JU|GG8&STth7$9h0E!6eA#%N ziH2`k0%n}s2-mVreA!Uu6|CN=Y}_kj;9eEWmyMz>gKy%Q7ugf5PvAVXNs!eh_Bv%Q z9Q)H~WLpv3OE%ibQ_Xvyis5TsAWtTDC$|6)+J+R z9qR*aBIj`_8FCiDAD>46d|zBi!;G^VZ4K*vIu_EBEp`nnD`RD*Ng5kG1;*Ip5>ppd2QR+CX|Xu zO*%p~sR-1hAh2ACpo*;sugpMHbq?mRnx|zlxHcUjLk+878CPht5OOISA&uEsp=0yu z3J|KxL-^%9F8pdfA})=hi31GT-B0`9sQ1+jp5*MZczBkvENfyQDUX3qMKXff4l6w$ z&u>y*)rqXGlMzv$!x}c3)qDzHHu44~BAWBz*TjB1H>X0TQ*qvx)8OAgfA0QeGDaV-zCDn$*;%0^z10RJkbUBl8kA6B2mmkl*6)jX9=XmbuDuYzYY>jRyV zlU&{k?*>)x)WXG6pBRAf(!go^;@|jQQ{VM7KHCe9fL1ll}^JDk+PzN|`LJh_}kmCs^m#WLmwd60NdohMFX+tTx#?Uz=t1 zsZ;gJ>y=jdh2(D61FMh!!sRV0pYe{qseFy$w-dZ3`%GNms+bt+%wy8fRSd^;PKt>^ zgLoroiVYLzIw>a2bymE=u7rs^MD`1u6%(YBeTfTka`;^_4V)4=j#Q|q*LzL~C5KRdRgR$D<-wqU{rxAoiE9G_nq^fd;fFZx%V+( zz=Qq)42*!CPde(h*x_ei!)?Zrdj~wOKN-lL5ERP>b$3m0PBz57LG|+FTE*)q_#JiK zjwLqG)?)=8V9NSeQ2m;@f%Vy&XVh;zHr>3z5M)~YQ;>O0BNg%;b$AWO;8?upkq3fH z-%f>}Hx3ClXV2mrRuu}2swN`9H>e=Ylmj8AZ2FxmsKaaQZ@dTZMH{oOWj@oLkB9eX z0v>JC0@V^EYM!+CrOb zPS6#8Soy(COrAc)$=#sP5`k%CHc0@CdtFKk&!AvfKq00z5M*549vCaA!)xsU<2~eF zw1KwT^eI~O(Vg!H22W;ag}YJN$~vEB&S}Nj>kPEN0dQ9UZM9DV`Y@!dc;FzoH~Jbf zHsP#O2RP$|0yt|AEdXMR(u&w-^}e-foBwbS+-k7ohcCCyzPJS<>o+iw=Jm|<`VD}x z@Y3fn_u?nO{$^#~#m^w>;-_8osKaZW^=JcavA@v=`ud<@3oNSt_jUqd;O`59lRQ4g z^p9sZY=%(N8b)YJXMBz6z{^ZhIs=-nAdgDqYkfi)}sxy#nquN^!Y*k zX7D*@T^rba+ewpl>#@T}~!e z6KGF##@dBCZWrY9Y1E{wVP$yS0U!p7rB)7;G@>QlQi+Wy_{x^SVdk}U)9Tj&kyiY~ z3Nf?cW3cMlCHcy3*m1KGBI?)M=&{<&ZTO_ic+}xFu8ve2*m+Y6(#yNLj7Oj7o5d2| zunwktpP_g9dg-%WR)LKu;C%Y50COe~Vf;y(fHIeqGZGZAzgby&=_}CRy$Xwe_|is? z6=eni)_FYY@ETVqy1WAn#KzJ~Uv?RfKG8S(8!`Fm)4@xV7-hQ(oYFM;yrPihKD(4X zQ)n$@UdspdFXzCIL#6&wD9Drrnx;Bx18wz~1Nx2!D1N$DON!WBpxD_5gwILEoBTRu zQ+uD%X8<|m`H)RPNC}-h46DfR9FSbz3IDlK2KyRyP}yXl*Y`A5!xz^}=(Q;%2ppSn z?Eq9X>8XuglbG8(8I|CEM%LuEYw?)&hZ|d#{7x&P1fW}Jl0{OdSC@EY7hJo4>kk9(ENBaDa($pr^v%^Fw$S=) zn0hMRG%P;w`St+Dte<&1AeqX!a_|U+21kp%s_eCMhQ@_*7pGKw57~atX z<<1)sXvnzPR{)rBST?ziZ{2Nzs;lSWPV?PeaWtZ-2V?7J&a* zRpZ<1-yPK+fc>^PZ}umE)T?>W%(U1zU9I~T#%+tDpUtf;eS*g^YtHTl$Gj!5=G>kx z*Ho8svF7&~z*}k4#&qPsmJf#c*Jk|GTL8Ys3|cNb1KLrmhADXx`q|Qt0C3E9lNzR~ zQy{lN)8+cP+ZVy}gdBYIX*~uYJf-~kjl|Fq?Ews1$a_A#ZcVRAthl-ter@SWllv{r zaQ#kWzh<91)7S6bg8SW+-=^l@Kz!ya2tA$AV-knfq?%rw`pyg7e(tG=vss#+%IJFy zn;`GjiHDxJJ;|<18VJ!SVb0kN^gO9^84amWXbI-Q+(vGYk5=}1PZSC=X2Iz@7av&w zH8+jmU783%<#KR6nMiWN_CY2%82dHBY)7$MTZw^!f|w;30PVjy?F0sZv(VW5>mv)` z#@*W>)FhJtQoyN91g@u&+FBfJCC;aS>sRwuB4(RbVqDe?2hwNU?yi{=k|Yi&m4VOR z81S}Ac%Brd9FTxdo(Oyo#DQ;qJopwQKzN}X!Vb$ocvuX6hb7>5gh){$gsaK+w3t+o zVriQkONM}wWC$-?1@Bjoc3C5bKms_hf=Fcw@XN#yRG|PTjR>5|V^8cg+X;-3!2B z&jR4@i-yU0AHn$ji-;_S@duW``1~cnKNJg|hvUHU&@y6YIZQZAGAz2Og{Ah45AaZaeOfHOp zfFp#{MN;4&5dptQM1k|w@!(HZA*_t>x?b%<)zVce=*$jPeTgotF4)_))Lg;=8`0tAYk9{%Vxt~a0 zEO_O|!qkIO2stDL??dt6T^J8OhZDf3NKER!oX|)KzUo8}s*^x?ObWshDFLs7cgr)t zPa^|=lC%gsK&ybT>NJ>LlLLV|6$Bk$)f#*v6?_Wg4MRu0G`!o5y)~jgkKOj67|&ub zVS3us^Ull3vM18nN7^{#E(C{tizsb8^2zcS#8BEe7A&QdLGd^e2i`{$C~YPl{fJQJ zBT5@VNdowlB~#ismBqGEh6ukh5vCkhfm2ny#aSn|OsWvUsO<1$#Mtfm5GSIS3FmZu z9jk;HvcZEaxx?NL@Z<9qgGWIu@DIk=fJe@I6p;YbVjJ+tc|oZd{K@Qd!6WAd+9U|k ztpew&gcg@-G1%uWI6<)egYLw3Mm*WusoYZ|5`#ls&Pea$@d^o`wWl2!=EOt-0)bN@ z3F~n%mL@D0JSMEiQ9>!T#0ESjtVfvy0tj`u;7P)Qpo#=go!UxfA0`}Id4JeKegtB3 z+%nIuKSzs0$9^_PMtu{p~z>_4uPqCy+ zwZWtfAf=NF-dP(D9>=9j=*cvTQ@IF6uAZKbnEE_g?AYnkC3?jpZ_)LX$SE zDi!#IGJ+~82&$zNe85Q+6RFDphfkw+AQpQG=u#o1 zCXMhuy%ig|$ePs<@=e?Ug5jTtrAOZP@q*(iA|sr>U9{cp`(&WU8oj*W;MJypP%9@1 z8&7G&O<1oI3HX*Jb*VO3+XJhW;G~VSV8SBjkv0xn=ito0ffxib!Jt3%mWEAgBEv_2 zJTu+(gyf#}HIOCDnB77Guyi>aHDrNrmCOpfBVoNr#q!liyHp#msw7KbwE}@#u-Z&4 zj=ncCb6N)ad?4^PbQ&|}Psqd9=JVfmEL^U`)d(m24=}H`w5>?Tn@4&wr_ZE`$W2%; zGW){vWD0yzxro&DIL5gmzQtRYYzeMWp$;5&FVMX_+j%DCJn{LvY13O`kC8=S5O@+W zdi2^EDS@TQdf~ZLu&xLdo7b$ha>nVnn3+(rl9^B%!}wH48NbS8W+DOZM1mu9X{$CQ z`MvW+`jN^|1+o1W`k=o4AOD76t-(mCm+byN*ug$yhIrzEWhFeFjI;%An`T}yWasFSq8TBU(BUsr`Els9~96gNDMC0z9>h&OoeUa6h1 zHEPG(itwbDg!X~t-ceQ?Pg9$+$MZiE7|gR)AeeZg?f&+h<4~93{1<%2`l8@>)ZsPj zm=~@0*gf)p_ULX!5X6|BvOih#gk2r{|A)U=){M0000mR-|nJ ziD!nlM5WpyKdG{c3k2M;jXYyyVo*^yGIoo3`~=S|F7P^2q1SWS$X&WX;`m|lvakY#7qwtaxT_5#?fq+k)xD_wHQ zyOv!iWuFs&s&k8$>66s&pN$6(OHEJH8Iv+e1ce=IQ2k}QWOKrE(R&G&rrwRul5JO? z9Uk8YLMp2>9IqF#Te_G{OqvQMdu+CapwA4T<&Q@QcIv*Lg9wCU@r|C(t0{!0uNy}p2{-c$-u10k!W;Vg~%I&@z+#7Zi7r~hD8!> zpn1}&ANh%cY`4tCA32CA8i#xOs?h4F_7zdAHMab<*W)CuwR|(~gd5`m3bQqKX^YNG z+~{>s$Jk%6cClss$H84jVN#H-lJD2DGwI}SA zu}tz|ZwBc|Pw=EGw^kh`Vk_xMX|KfNCGdbgab3{y-S*BeH0I5?Fmdh355OcbEk&^| zvJH}xPR|SFnmgsUkXAZ4wj<1U04=0TZjaXuYB~;x?~Ljrb98Ioa7$W@Q2QHJmAU3m zqlJ2~r0VR++WqVw;&dIr@dIHqjUh+ASQh@B(NS@~cD1|dsV_-;UPjE8^RNw3E?oOx zSawJ0BrAl>2pdY6WexcT5X1q?^`Am81jG3nOs~fmQ$LhX9bynlAH4$-4lBA9QiYq@ z87)AMgAz(4!fMjm9M<0w0a6v{tIV^NELObpXP3`b)U*@x89Tb^oO+db`gC@e(i|b` ze67ZZ)BB~r(*Qpqoo`Z}T1l_aj#u&OY)!Dzm}f9df7x`HDRr$b;S`>(2aRx?w^7$t zp_L2SLwiLhm-FJ$ZHb+HJ7c0JKl0+sH@!SL|IheR2Of?`TP?pRa8i{~W;*EZeiU;! z5qg1lRW#x}?|K&Fq6|x^H3Q09CRZ14A}?5rOE%fsHgbZ;pRpI;nrtX##M(YnKkkk3 z+~&?#V1fxYR?-#{_;rMDS7${>_1W~iW^pf+R{8V$q~hG zUj~ld*aJ{`0%9kHw*9lEZDL0H32F{V&21_p^|9KQOZ%(tH&iu#-3N2M1Oqu=%QMi) z3a!@quYHxs5mE$*16Q&)2UBmDU*nJw+cVC%T6}3p3y>DMkb|)L)lti?c%_LG1@z1Y z`O0Nc)Qe2`t(A=Nx@S-67lfIMT>Z~C1iCb;(6G!=-@6n{h*4Lbzb@xt6wbJ=GtlqPq%4|UJ~huHD1cmeY)$p=}87X%EjT<#QNXdk!a+04QLozV|jq@$tbmh zpao9vHJHhQpjvywl(1?PE{BS zfR{NBD8e6C^$``kE!T9P9nZe@25vZLg&y^Ao*qb^nTes4#=LOmYXkDsiTF=zn}0jrbE{YJ2QDvE0x2)7y(Ha}6$KtxlNp z;n(;S{ex!!X?=Ij-kdhogzEktXGnH|JzUO_edSyAXRv4nLYTwEfl#KVS+7%bqIYCP z&ur^~ZSZtANr8eUyQne{v(gw++&~%2)9p(*3iM+2oFo6$4_%fmG}($R8Zaq{=*v4` zV!nyJ@5vIXQ1m?j1P)8`sLf>nrc_UlatmZ=)H+st(SRps zxN#&CRCYp(79mnAy*pBRv1>hmJjf?BH^u0slOl&xgTlsm$Om)hVJd^1pw4p?10fzlXzO(| zbC^>xs!xnAKfHePWTo%hPXFv8`7IYqX4gT` zQp(=7i+KlBm-}5**KPuCw9u!rR)J;9#3s|m!}eO2EEDB?Pkw-lW*+C<{DR2Le5qD; zzW@8)0)O3mN~otlX@tuhMxW;eIGuX+$rh3RWDgY7H8H4MMK0V0;bN9|!@w63^l3&5 z&0)q+q@6rD=7qQk$KedGU)PVDaA-g0fo}fn9X~WTc}y8_Lj%CE2dVh@8NOLV10^oF zQI_gsGrQl%rRNcT`SgZzAFOvvC4dF?AeqWY?4l@*#U3O*MGdG^xOm5JV%3;SOATnC z?9tAd{*w^|RtEk`S%@DO?b=lWR>)||^HL+is%@`JzWz^pKeH;4-@qzLS8dlpcx49nHQ47}Z2YEuTDZEA(kW3fYY_p}B6cIFk zMbt8vgs1oug8 zCnR@us&d9lEL~oxDKzSww@MWCZXwy07+^2K-AXe{GvG?+83e%j7Yl=f%Wb4B)huao zbP=@84F{aNVYG1Qhajw~Y1qVPFM1Qkkb`Yy&!y;yTE(C{18v*gn>iwt74810m`a_j zaeX94mEQ@K&M}<#Z@w(hKC*E2WHWD)aW;8Ua;S+nTxrjgc~uYuVX9eNx@n2>nQ}l) z;B1~Sl1qH^^=wCgv3{;zvR7E`t1eGiP7&c2d+p1;-4J!)xm3Fy$-)_obcQRPY%u7? z7XZstD$nFs>PYE%Mk7Z{QrB2riY@bl%aA*O>%{wOH%T-++P~>LC$UivlwLe&{{}*+ zkbH2ug77!!3m_rRpBFHht_jt>Us4q($OqsvHD3?|8t7vwAtJ;_*cvb{S`NuWeEIon zjsj(8M}cyEYQ>V-6XE1Hk4Wp-sts3$%7Mpv9*9VOz!5|H}i>_1X} zG`$FAG#B1$-wY#f-mxdT>FlkZLKBH?LVAFB!E}EpL75H{6wBvM^fdB%R?-j~0d|zFTA*n!Sbq@R7I$sS)Sf>=TgS> z7DkZ`m`^wC_Q@rUNntv|0Ijbf9@edvA$M)+#jMo`0r?s#41#UZ0l`5jQ8RIPkWYkL zLuSnjlMf=nsvrXsbLOTQ^D;=vJ4mu6B%p$6II+3u_iquF#Dv=&_{Ne5M{*;lK;68G zCcB|s+9?b}BBHf%?-TpXD^VR_P2J5myX1qdO&uW~Rc4(W7+B=mt#w&%j7)yuSIH`t zvogKN-ARwD5bj&d;OK|`hx40`q@@8|QhsDpp0fOFB|4a zU1aM=Yf<2ymK zU)xMo{8RuIn0NEhLK+-->qo3hthYqL6fpI~8=Tz!8VDrj z@vG(yaO``ZSJL~M*f_nb>_GJJSMJoZ*88oEkhy(K3iaPYXuH$dX>EnPP{xi--@Dwg z8bG_SeeY6%=g@5Mxo0Doc1WM#-}0nC;rzZU_NEIRnJ6u}J@fBxdZ$f@l{?MD&mg$S z$EPCM$0zZwcWT`FU8Ej^5NG;)p+aG`xn!?$Ve)&}j!{ORq1@*_ZMk}L0Xz(ns0%wv z9I$7!d>;Njr6K{E7`|9mr3TLh#}wtivvU+hRX$+hNoyYhzm|q6NXEYB#;z=!b~YVO zWr0qjXwDrkt-=^PD4HVWGMq`hmTMQky0!3gBy|fkG9WF~kSkw-QzO(sS=AbRuW`op ziGH!+lMV1j#rCixt9)sG6m~TjhW8@qc&IPD{BVWND zE}dlIZ@O6{V18XdiKR=l<6aTB2BC&kpPu^4(Q%5cZf_ImMCN6)=Q;MHw2-oy@2Dq? zBq7jYByn6Ri}-6uueQEcae}Jfz;iW9-@@@%gT6?;;VkD{|RNoav#$0VNE zk286ieB7O8wkeB~4|tO=-Xbmsf3}F4F>ZOgHfk8otsKVsWsAHTSaa8kixa6o-Ri^V z0)MR_rp^PW%$7L2Smf5N&hU;cW4ZGprO>fj*|YxR`_GR&s^#MgsOp7EmAx&@#MrCd zyIaPnnh;UNM5d{7{h@D7*U-~T?d!MX93o|1b~=jXSLmU?qT;fW${(B>2Xkjm*GkNF z&(^d3J)=9>N78NIp1Mp3lsdWVqBKFPu2q<(dE3}t|E*)2wDb9~gCECHE8@~_#Vp&a zzNrs!hW)H{u=fDT_Q!n=TZu}6ReD;sxxz$>nGv(gZ_n! z;P!3tj(sx=w_Y;NUw>m_{`wMv#{|y_Ub1-3epZZSuq+;f$KpBgTzJmvqStkVy|*s` zM7`DU*~KB<%nCwg%`Dow)2uKggWyjBFe?a#HD!ljS;;<_ksr(p*2VkiF?cKmbFM4& z+~gW~t?C^C>-4Ya@sh;rW(KqwmFF{kRIbk7OSAYiGH)Iyv5bNP|Oc%MLy< zDcH#LMkFZP`;8>w)lnA#s)G}RUX#6^Nq!Juov?0LN3Ooo=BM}OB}u$qk$-#rTyG!J zz^B;bZA%Yeqp7)&MS6V+P+bhH1J-3#$pLOeJjJ?Vou#$qz3BDm>Tz#J<@(Mhjmi_7 z8q(lZr3ZwQ^MZI2T3-Tiz`9_a=p2(RHcfeYc|LQ*E-<#K!H)(uQpJDA=KFRbjX2B^ z&zTu)AojKfCjgEB92Km2qTgZNNgJ>&+}zM$13Jk`OFz$h66yIRv;j;b%OxA!kOh!{ z1{j|kP)<-m0P^5adYGmR6qVz!tav}nFAU{f9?Rk} ze9L29uueS6V%y4%^VWky!J*^{34#uP%Shnt-=fStZCuKJPTch<3hYY{mD`mb1U}gD z;1amsISPEsZ@hON{O+FOT^`HgF?`EoU9e7k%VS$ZA4Y;>{(+=v#|7=)>72lM05p@C z>l=nWe@*F6%}wTW_isUE?vmQiY5L0f4cw@DRj`za4Q*f%)GmDJtIs&F-fRK z#NPcxd%r}G^+5pcb1ym{XeK%xC0sR@;7vKbU-!1>EH1YrnO^uHfJADW@S}T!n4&P7 zc}f`t+=Mbb%~5q!j!zDo6REPy_d$TF%cs;7rMc#P5jv-1ohN1X;6}Qco?h(4E396b z4+2#CKG#R6ds{#z6a%OdN=cDO+ zSNB6MEo%}RaJJt#Gr--XAP7wIH;5+ZZ2)PQo*xVzWyfefMOK;W*m*w^p1gSu_uu>h zmc{>5SRT!TdC?x;=f|>)nNxh;7v+D^x?r97o*&zaZN|3CDnob^8UMBp3@$qO)o3md zu(=HNBi60;vb}Ce^L*-Rf^16;LfF%5AQFk-*C#1pnB(`(O^{J;AVfd=jn?7JlPk1N zN;5&(m7HlLIAnIWozOv&TVA$b`?}jSX@0-5CgFueyP^26hw$jlpESk$t_46d^+Na; zt;52?UCQ%KC5*W6*q3Cp?s=7P%Tt+DPc!2v}}i**qIC%@o(7vVLT3(}tFgF&|M zI}>0c>HRsc?$T>x9k4FS7C;;wXL`bj2-{x>r%e<`$LtW96eZ|N6fBkHdMe8e9h>71 z*IyJ9BFd>3qMz*}Q-B4em(D8KN+&tDJ4a#donv&-1wASc@;`otn{v(aL*ToDoiYV5 zB=y`)yqpwu`(ic6}Qm@e#8oiZY&!zPc7LgOB-9MjYT=b_D(` ze+ii{%jnV|euhHe_X~@5!KQm*kor6iN?$*M-(Nq0r{yoG>3B(iBqH!V;xRF2cV0h+ zlD{57+_Nky>Vm>hFwR{szV>&8JE4q}!E55Rl^%%6FhhpF+RjIA)sIx$CNIVNX>6Lg zaT}lBuM7e3_{e9s=wygJb86lu8Y3X-&j?BQd0l{lCH|QMn~9LPf_3_7I{iHSkLzLr z>q`J`6zKit2@}Fy|A*Yl_J+6_die0BGjcblzAFJZn~m-u`s1&Juj@>@Ea18E8h9-9e6FgCSLoU z2tdrxSLy4X4%s$$2y)D=AxjltOtQzj$4T$B*UK9XSQo5Qy$HZe z#G>h$n?UQtDj(_dK&5~B(d^q>_Slylf<;B&3l|etP7%=cLwC@kcn|O?zp~^9$ar4Z zAjp>#0b>!Y8=p2{Td~d9c0T177w-|;7X1h&7u*jLj+?#}4@iW_%}jsWbP;ceBR;nf z{cc6TU1;d;;a(g?WtSH3g{v=$K-fTtmju=c>xOky)DCPbwi(;bha)oK3$2Uxf^nqB zWx{dGx6=~Ln?{`s)mu-<^uLP1jJ*6$ZA_49{uYRNmP!3~Q3DhJfpx<=PRrk{G!w+- zg^*LjSm&E<)w_3~dx#`GAujvb%Xey*3E2Vp$`%0A3>W^mMqR*$NSu#p8Y-d!qre1ZX_q2lFqDa{`|zQvh`D?!A8c-U)zpmgSn(T7Xo+Q#HYqVQ+at zVgYu~8)Tdt_)J*>U=HTWivop>Eq!($Hm4t@$a_+MaY6ReQrLX+I0WB13HM(l_h{dwhwH(AFj~dEdJvjn4WQmK?fF57#_2Q z`!Aj-o%}n`AA#;!TNrj~8O4IQAo%^oWBKlB`D+L%IS=|-$`e4%)mRI;mMTF1t#j0s zWrA?I4l|RAh>0(|0YeX(GXfkWIJ6j|ORp(ifUuHOG5NzzF9WS}t04J)ro!XOUOa@U z8S6kV(@QBPsJFxT5i$kn=lAs&6SCJSWfI2BCLdxl?&W~qFDu04BW^y-SGoXc53u0{a z!>e(x%iqAyS&{JdSr0Hhw-!RK{t7~&@?(W^a?V|u=V0b#KZ;)pV(5w(pJQ)7Ee4Y~ zFVISIq9dW!ZfLAaQKzZH)R60{`5-0`Ym7mH(Jj9^2V%HdRg+W$5?=JjT_}Eb4_=km zV>+6gyX5(O3SkWb!oNr-alXDEMn>9#R*DN4Wck!gfLtFMh#5pW-fY#gQ&+lqw@ONy zT?Zy;JMG5$@VcfVa53e5b2}9w>0u_AL<_(q#uH4h1cL9KlQm977+r9|R73~LwV+BW z0vZ_#3~@-bo}Ll7w=T&z`_e=3_|5ZwoB)qr{Q;Iq!7wv!9n6U*0%ZOIO9`n8IV#*O zPR30*<#3pA+=g;peQ};$Bxp&7i3d$bGk1yCI34X&_A_0d{ig}={LL${z4kpZLw2AQ zWe*la48wGRcw$zNj;=7hy%9$2HOCFREu}8Vupc(p_}O~SOm?NHrVBEdKRNg)u0duy z>z*wY!v4ZblzgqIHBBdM zwONuJo3l>5!2VA}#JvpAk9Gp>%asCX#H_)c&@x8?wSNZ>e}818zFaQg}6 zSRiAIqS^}MkIA3*Qxd#FYqKlDBsU1MpOwMA=a1#$(Tk@v-9X>JkcB5=Jbd{FJb3xE z^0Sxn@sO0oNt1hjUm9Lj;=!w@@c7lUDxXP1_Mc^76u%a6<&bHj*TJnsQthpiRE^nw6PFLEI6UO0mlQNdslxe-hwyukDlL8LcKuZ}1m z2A6%nGIk5t#P5I^(Y`Pvh9K6j3e4jC8N?&j!Gfes;F`9V)_rDDH6#bXtmHtLmBK(L z#sRcr7y%68T*Ty4#5;mchMQOfZex~qnk$U(pSv8n?I~E$T=v#PCOBx(<15YndN&2d ze9TaFFG%mUCk#Kol1VK{q!$o_e=?_-dE5hZk1U75KU=`yBMgT8VhKZzT2KvUgQrwzLXK* zj3Y1dho4&k#uwdSIvFi|$VZHhbcTg-8+nmW1&AdAq;0DdK!SYC86mV$glw;JG(Q6m zE^|HZmU?bLUEJ5Nt?DAh0-M@6_mMgk#SEWlv~vreo9-J>gbkxvCUivl?D zB3~@PC2wBjkGy0HqoZ6{0Th!@C)_wG0whQXkmLlK$xan`%c@q2GpM;wwnk3n+JA9k zjxj?mKklsBM=QRwJ(1X8j(7@Uc4nPq1mHtHnw_uDdBB9TPQ1uRvtt}y zRRDS9W3R6+fIRZ)WEA2V^&$s{?i(7)@x~~$ozM=Z z;F2S?^&HUbjE-V3CB_SuC2oV!(JnA1+7-sc5X2(fh}-E7W8&RmEF!^!!YEMyb{XHp zjSDAkC}7=!&-p&oMY~RxonOa?0<;nxVG+%|>ZhXYamS*PHZK z7VU?5(Sb1Y)LIJruwa;f#usLt7QpN?o(#@nY~PZh-l53~)tkK|Eq3EKAx3 zUTFtlVd5rONIas2$(vwN@@80+vIQ2UZh^&!v|w1A9t`H`Az+!l4FYcc0?RUXfiwG+IuR%c^6*fQvoh{fLW9eFY*y+b`~XW=0!dgAVER^3G&hAYot1h(C;U0 zdeG6J&uHYZr(w_LwYgcoQAgdr_-Oa;gAXkZ!W)m3ai=_v1oXM}j<4cHJ{5ojXcNO+ zc#)42?&L@mz?T>KIN^?oaf3xko8^-);qB-o5&?+$F-Uf=LO%9>;<$)Ll5>9UXSyA^ z>)5wrn;Q52N|#6-=YkH+y0jml5$BL8EiS0d?r59BA7EUJJ0V>$`Dk`9DxMhT%8PvL z^;Ce%e!R%XUXKDSPTHcd=X0KpZlVh;y-EZ~@eq@b&`xm{YNfis-~)?uns!qiMi*cB z`2IXb!6$0|rq(*wJ%D>uSzYfBn3T1i5uM5FmvUz(s^v(cz>XpV^FEjhuDRRBK!N-e39pNTqvQTt@3N`1sOeXo_%+ zQyF*2pgE!M99i{WEmBK^gMY%mT9;b zjc)nocBlX`{=9QLW8*x)90ibLb|k$W-DFp=zP^hHu$Cb|)wP_OoYY(%V4+ zmfhF|W70e*`6I$@q0ic>n~@uqqk4IsbR(7S-CL-%YK8k+`VBg;_%PmpY?L1;vMWBQ zln1xsNI(**dpnrdF($zk-`tK#G!YYXgTKTXNCprXN1WS2!lezd|XGF3$3y z3mzKhZ5V{vfEkHuO(Hx%;k$yT|(53 zW`PSTv5pj&)zpc1qPZQb^zAgjq9A@gdO8$j!o?m>k;*_n&Anp9?L9)ncsEer_Dv+= zVi4to;ileyVWSB*AE-2KI%MH_{{-AYY+rUrXj^iiLKzS5wk`e1yO+%PI0@y zHg-EKh~5ATV_1-2Zc*GuF&4*fVvw*I)}-tP_tbr0PJDawWCj*wlC>aq9$}e=`JAm3 zR_WWoHe)x2SaRkivJ0uehhS#Uv zmu`xPd(~R4YbWxzXVaEVhc7tmpE&-8FEvLvCn)3b_2aVq!61?JxQnY{Zlpg#E+b+dpCZAPrj#+O zxjZA3rWP=|r64}OL24xo)7HXhV)I952t?TP&GtE_G;PsT136&1_^3Wjk2DduNx2un z&>@E{!nui=J|98Oh9$la?Zb_*nsIArVr>$MZu#bRro?)|?Dzo1xgB=W#gww;mF+TZ zKDwHmw}Upn|JJ!^c5s_{FNsO_o&UlTUa(oKUY+q5hVWPD2KWE|yCYa}=1D8elVt1q z)I=0vZu&-=Uf`SCnG)v>vl9Y%CDw4l#eBXcF+H-#M?atOc2>a`>*<7xj~wXDw!PWk zL4Fkx*dd4`VPL<&85>5%*uO!y5+i1M$9**+YWmp9Mftnn>(q5H;u62y4iz9VkQe!g z@yVW*0!Sv-Fugz`Tnw^?o?QN>kIN)a>m6*1yT@$Q41QeS6jBUEAT4p}uU>yOW;!?(a@uBXKlvKd6a9)b_!xXpWF1 zMG@}Q1Rt24v|eFWle77_jA%tX9@^`1EjP_oguNc)kiHwtPPP8D6Rv7~N!!*=rCmcK zUs42g!&Tsa_RU*LR3;B?}i*Mv|C9egC4Y&#VmXSs(v%woR?rHa6&=G{iup zIZjZxvx5BJzeR_(TK$4%Y$Z|bUG$Xbk9ihste|s*0*^`RL;Ki~AS=S1nur2ykZX1{ zlPE;k-$|o^63;vqnf~}Py(dA67}B1ah$8{FhD&obze*wk zq-=Pbd?Y^6u|g}+QAh-&8B8=gxGiPYNx|=5_)Xi_erR`NcB1{9t$Uk>YI69Rq~@$nZ3wOip{H@Y{ z;f@&z)w~@PU@j3rBW_KFMuMYgWFi6S?V8EXBF??U+&wOy4ESN;tpNhl;QtQlIgvFt zeQ8}uo!MUBXVGqSsH}S|| zVNv|OXinjFAzcXKei@s93YFz4(oS_2YR1?Li2y>FfuyvJgF8&U^Nw#WBv-b1yw3S(|sz3a&KUCj+Rlw0Ba(5@%-me4e*6A}iu z>(g~~|5cOhbat2@81t)b`ozl~52mL1il$u;gjIR_U`fFqn31;y%nE|RtT3c1@`GX8 zjX=B!0!)&;V1CL*uuKjHCnBoYIAN>3_xNCMt0FtoAUYcu{Hw(%z{SmvHscc zCz~jplQtQ;VXJdTML3ihL_6OzjB$C0!2d@@tSQqvx;%H}K8p<9T^3O~n-(1I?>;T4 z&q9Nh9kqH*!E>^t51_rBT(d=o4&B=@K7Gr71M#xv2zpNf+FYFUSkFm~=GPgr1`*D+7~fG#ZOVVf_5BKg|Kn%P|J!~PmSM{dVQu;V_FQUsZaT3t_PsTG z?I!;;Q&Sru8nZU{V`>IeRomkY&FFihd0|McUYzm9)ri?Ia+mU z)m24Rr9Eq6K4!1g_}@-EA3>VYn;MWf5@pk!2Ho0pM0Lj3z9plHfjXEJ1dIC;b1Kq#ey`7v5d~0000C!9-gs*@?wOFPDc3TLC+gIi8qrnqX(Sd!oRW)p(~-x30?lARJ?Ie zR-~XRO(~nA?IgVzeK1Ygxg`!aO{r-yC+AyW{rAHHk8ShUnZcU#g#8mIo$W3M{s*}^ z=bv(XwxxGmoc{C^3U>ZK#X3PRA^qyry1C>jdBt9@OkwCzC$a>*cO_gWD!5YXVQys? zI;UY@ob~MPT=lDw@7Uw}YQ6O%iIp*p!{%67`^{hxo~ZA8yN?;)ZW;|AhIvE|E`a1Z zKTiz>+1`e0bjso#Eu1ajEzmIjHOQus(kGyr6F4_5wm1lk(Jr!B3oPgqC;hb~SFv34 zy-=z)%+LTC8hrROE{#1*XLA0E+X$O|DEO;j&5F*GmVP5$_>c|UU0D@A58g|;X5oM= zJzUbNxV^wFBH=ME2;kQlEBXE2oo#A)Y&z|Ija(vV8flM=ov0!LzF&N7t^5A{+<6P| zQoXTqiBPS&RVAUos2Nz>u#Y!TjjwV<8++8o$bDq&QTyZ|HZ#Cg!nNm7^`OLGwIc?T zRQJ|Yq{)Mm#V*2aBjtz(vOQAf^;T4z5|u>Z#a49nyK$FUWC;%?l6ijDGwS=EeQz<= zrm9--J;{s==`OucG%%x*ZT-Y+sDGGBnc_v8vXn-i@^|QJBMcco>^E>W;P-nsv`G+I zFdfz>Q%w|`bNN8Yf+x)zs_;e!B1{yOJW(TCF+rhkUphfJ@$4RZyv9EQEy+=0_uV>p z9}KG`%AkCrw2fUak=&P=fc1Y1<%z4Zfo;<`96Z88(nM%sqxx>Rtv-hWBy!oeq<%F~ zOC%svNnCO4lpPpBtCY@YDi2&Ferii*G3&YT;Hs3ZbZ~D}yl-ev*~a@tPia8XK)`Zx zW^{{hR;I!b?>4e5Re?BoQx9=6d7(y+ldAu!@IK4L;sW`uq zwNscE)>GiKl%$5t+lNm}+kT+FCdb2Ww$x+34^^r8yumV z>roP@WU3<8D6G)n;Kk&3b5e7Y-$qF1;TCZNgmzHq1@0CUZ*Y8pD0NXGd!vxu@AlI8xtZnrgnWhhZ5 zTDFta*4)w?&i@8*A8m|49VNW@VrHXSt^5_gl%gYKy7*V!!;27bhysXH>082Je#9jV zJ@=HC1v1AndyqYl!KJmTIWV;ve9}}IP_g%;zne+d$uc?fe_Dx8Y-41QL2p~0|A2ErBww&fQ3AeZ^T1nD}Z4=!mce zgNy#;t9=_*t3p4MqJufCku6m&on%$g$yn%d_N@~k;ten9>LI@RJMsj`yiQ=_cjItO z+ZLqk$LzNv24#4KYLm2$&9CXV%dbxlLYQyPiX<0U&NoT=Y8|v%^RWY0Btd^uz)qoW zF&ky#57t$hp09+pS%zo(sm|Zli0-sX6GZ!zbzB`fKW_MXkJy`>>hC}yE=n8f?1W#& z3SDLl`^v4X;Pjt;3+2k6Cj)V1IAMp;{|MFG;L5s|KN@&;x)k~{jk_b~?9hzp`YbOC{LS7Vs5Rv2R?m>`;w?%qde zzp`L7da=^QtO5WG_0P|r3`ieJeJ3Aiy<{nZg! z=NK9B*5H+O*Xvdan#wozFErRnh#*0YdOEZW&Y4DGUp}5cJm2Mb0q)-d){@L8HoSO@ z2Uv@vIPobmeesj%-xA^Hm%#pgI-|pAB4MsTK5xyF+CGdz&*bvoo*0M7@q1RtS_NhT zk^bZrb%EsnG7kL330TX3&W=?1`%_nlai5Rv9-5!JpnS(A#3pK%0T<82Y)2(j`2w10 znO?rDb|68<7ih03&(V4IU%^L9Hi@hJH}{=7m~_vWFx32CAXVuAR@eCZyE=qX9_~n)lDL?v>M;W1nYBXJczcSNV z3F~Hau#CQDYkAm+!I^S3r)y^_S%Qp33mDtvhx194XY;N5z%7I&g?yQ5!gDiY*O8A@ z6CS>6b1d3(5qCWd3{nEv+!1j;{i_g|xq3%e8ITR4K}I7sMst+5ZxbN=n2l3MJewk3 zD1AyNyBr!$Sx6lR>XMgNV#V-Fd`gMGDE|j;IEmUy1 z#^{jyzAo0^M#Dui#BVmKkzOgUHR=KkEN)5rEAl9FRNMy@_7ZU?F*R#WZvbXg&M%6D zXNHbjuikAnHe95e0vAm~%5@-P+^jP|X&pAQFuIVMR7|@Fo!moA<&RmIYH&yE3uXbdpqZI9vPB3eOyF|lRM%O>fKm> z*>ZzvZeQQnv&+;xB9-w)1PW4Bd{Mm}IJEJN6bT`-Rm{o$jh(26Z4(f~mPc`lmvO7&BOpcT35tZOTlP*ovz$L;hDACH@1>@A9))0+o#mPax3^ zL?gNz+4`_~lxpaMdbosmicZQb|{n(lcOgvtEYi**g_G!n z=}U-47^lVIh^3XXqtp0O$>mJmP=ip9e)Ly2!C;yXA8d%SQzp%sJx%X^k;alrr}TDw z<>4JL*2cgOr*?uMD(f5I(OMnz{gZ6ee$+8Du5&449OAVq3MY`BW9$G~4B;UapbmrB z_ZiME85r7u)at#4o@$}jaex) z~*)Y*U8 z*Bt4y&Mxeaiu?h~7E&CjGp8LBNwp+^C^_)ib@TfiCxNIqtQ~&E@uJzux48}o$ zg$R?7T|Gb*tCkw7R&ji;9I-zVRdbG?G1BF~rSOdE!_1I7KMCYrC4wsl@pP+Cem<2# z0}!8uM`GdzDy@bGjJ#&h!cl$b#*$inTnNLZyKCg*%>;dphY!p$LI+OFapHq!+#X}X zX`9?~7MMnt>|wkndTc|?D_D#$EZ!;tD1rbMjgD_z!-ZNS^;9g zo7xdxH(ba{RL&L9yHGL@I~xhQlDb3l*UEsguDC30mc78V{{1cS8F7qBM&4tPp#leW z$tcO*%=ensU<%OtPapcDeUdZdcgVQV0S~-l;&qZ#Migm=IOI-o(cle`ri!#pP!d=@ z`5SaqH79bAe0`br$Q?$d;^|@MtjfILco3PRVhQ6P#V+Rv?me~BLgz;Y2>ao2d*72qP37;UG)OlJ}~eeY*_rK-2{^ZH=H;=6_HeIx>wn z#Y_Rip}_JPRO4y7XC62Gk*%nu-m&9gOJ{Nurw!pnStxcnh^3L0C5}{GNRyo%7^R|% z&qfD&k;M(D8li3+Uj~J>$M*8EF{sZCSR3Gy6W0i*;U}0F+EIKN8|VbKhc z$+a;bE4r-vz08jNMTTa+`~iBaN2q6#*bTeSIT3FjhlOB1N9z? z^fHXdE#7dxYCHjKdX_01reoJ?5aHz|iWdgXBzQSLW}|-_vnEs**X(Skl+J}N%eV*# zrX}+jM>g8BFX}a=lj2RQx+^BI@r@AxGR(;flsJc-HIsa!Zyw7tXB1`p1W1{vibrU+ zB+B)`NI3`Hc0;G|iX9#8K1Go8!}me9$!3`2v2$p(%;{%SV>(7GDaZN$TBr}6AvWZ4 zN3AI^7;MAqw7yiZcl3?`*H_?Ze)sSNK1$D-8T_*3yQ?1AD3>RMpX#g%osO|8p>Ifo|4_^`qe_OELV z3IExR<)d_Zsfz)VRhDNi!envk=vcy^v`;ttpek-2afJQiP{5`p9GLhf`B z@%=J)H;}666wIdtv7^o5(?fkSNqiMcK&Jb5sRJ6}@>&1-Crf8^vE2#w~6|Ytaf_n`HXkbswj3vliS84d0q)oss z2eFfNC#8T6=+wg13wcrIg%x3S%CzzNCQDBNKoJ!C<_QeNibjwhV-je>-u+xEhTvcD zvJkRL=12l|T?lRdPAxhL@X-^Mf7Q;#nI=Y29@Wg>iHN&|w?TP03LN#5u+bIbG)QyR zp(gz@#98r{4FITzQnHhb&m0EoOmJ@ln)$U)(sq5X2}{%qNjX!aLm-q+ZY7BIlR#}| z^L!_k)C7!8LZGk`N;q$D413@t3()R~I$a8`7gkk}N>H5}dJfTGC9N;tsP4!N$=7*H zd}{fZOh`QaIIz4du$dAW4Ik+bVV&L@;Y8_Y$Aa|9aW1np!wW#P!Ft~l>BJZ-U@(AYuVIUx+m#MV*+;xq7+JTb>$B)87HeZ7ibX#63ZcUhTJ zB0QhcK$OqexC>%IOR3F!-{rVeV zd+aELPDM{jOieRsk%1G@^S@)J&2&TyD&L>iS1vvvd>?78*@QO{FAMKucA#i03jro> zhz~3q3o7MG*h9z6Gx z)f>8>ch+bKRty~=2g!`y2?OP4lSJzH!T3gqBVRm1!uTern0;~;16h(n*eR*0U`hDN z9M`>dze)MHiLlv9p+wYdM*ZAs32d*SvaB}F+_oy;3}0w$$-t1OY2i-uz{~%2L4*Es z(6=)QouA(azO|O4*aj3S=&tkcoy~->-eiFdzI#~8D}Bg?8Po2mnUL?`eXp{LQUUyg zvd$C-JW0@rL=->aQ%VQWjwW$%qbNI>CZ3#|8K*(y4t1i}*^S``@V#9rM`{ z@=ZBd3omRJvstHuAMkn)*eK>BWCkRkL~5qLBxL=GwDk_;MN^8SjxR=%BY$S?Hy)2= zTbuG}zsq}9ZHHIOLj|=(kNW8vW*zFbeP)ORs=V34?vP`KNBAe~A1j@Y9 zw;aNf@~)%ck${>FDsV5c2dtU3mo=`oImKvnTbLm7E96%_A=aM83z zkrg!o1-bax{ihv-&HB@$gy+?aL@Doz|GVdWJ1LCq+<|og(khqmIgw5qF*0N#l8vPR zkJ^G5m{DA(pZ{qG9t}W^gULRco8TvDVJ-p5`BPzU=Q)3bm}^u3R7Q5_@>X&7M(`DY z>8Vp9kLSSin}mS)sT~`D1q)!SBQ6V1iINAn&Xy{Q!Y>)`?CY?Wut-l$pNi5VG|N`R zK{jS!x`WM!f&#jtqbftf$D@F15d)QW!1W6Qx6BKzI7mMgiJMCUY(94Id4x7Jl(&swh(AaSA+LR~QI8WBYIxWi4hm6fsHa?`y8 za4f2gVcbf)@a5vZgiqouGV4N&BHsW`DmmFZ{9YpN31;ur&9+$%$p8iybB|^keS>vs zenC_1&-{2&F?d1uO`&jHf!RBT<39-kMP+eV38NH7<=gsk=nL9(?j(F3yETJK*Q&3D z!xmy?MDSd)g5kSD01(A9joJ8Wfuvs??b@g&46~?@qSN-}aTdQrQx`Ic*vb%>V1==b z1pjMtRLg4CZtNlb9?`JO7Z~00&No6){{yuP8;_*hoh4HacQI(Hto=d;ghd-n{=5l3 z1JzECD#bYWNEMaKv3b%Kp(8|AnF(T7g_I87j&>evPfI@wzHKe&I+3A5W)l-nb#_)3 zU4E+B{QK9Y{nOii{L{8!{Lj!d+lpsqL8A(Vx#BpwUN*i;$%1Ga_X-It)sY=CoJCDR z@`Ut?g@=bP!;^k8EaDkDrgn$O@6OSDVVy1*3Oxo>I!(9o?mN7~OCy7JI)X|w<9r>I z2}_`<2A`5&0pg7f90B`<{>d0^MSz@FAPl)W;sh$9{?w<+%A82pSanxP7xr}E1j%mP zo?oYZ{c#?A(#oW+?o~6(HLRN_OcIzvUfHg&Z_fT%?HiV1yF!E=9;RkReBu#`>@wpf z|0+iSn&89*$%^5q_e;qug(L6?~GdpmMu=UXpMdRjo4Wc8T*ne!hn z5n5}ZQSxi;-Eo;;l=xg`w^p~~Oy5}=n21j#j;~n9$fsTMyc>q&S|(0FGJ}B~lYGh_r`f^4wAju? z-J$XhXzj5dcaz@8y;_SNsTZZZ-ae%Q12C;T-WN{^SDs?jSASycL=R1~ukYme0s6=C zd8Zj=UvSHxdXOq)y??|piPYGfz6h3;b|EJLv@|h{{2Bn=)MuP(@$65E<-^&c4{;R> zSrz?8a((cn_5P31Z?&R-7yB`uwSz2&f5XCWR-TOPMWDpz_=g!x!rffb@g}%A9UTnT zthE_uSYp1UtzNANHTHN_Vjh-0_P?%M_1P1x?K*2N4Y+B3y(&%9+vexEbI5fqa_x;Z zF|sf?vW!Fc4!f^w7mR+hudFrd$TMm)wVjjmAxD_Ef$lOa2@q}^Xb*PHWQ-1cfr5R2 zMF>|QRhU;TD17R1($0t?+f`K~>B{=7EiT0*jhFzTCeR5z-A}#FKsKV&hL{;QbrnzS zl~C%hc(plBiJ_dQD|>QQ-IYZ{$C0qjqIQqJp|{QVYz<63SHoXL@!CHT&n&*@@&Bw- zb2y~*NQR#2@FpOnHnEeRbI?5%%y}{Pm!flPzpH|cGd-Y0;mKuf0Ex;`#=7`eHWzTL zVyL~Enqq_XtF#+0Q{Y0n@IhtW@}JT-=7*Kd=I51J=I6BUEbD`Fg?>dpSJPa?U(hYj z_j)z;WQT>xXEE8`=rE}+gvfh7+3Qm`6>-u@(xdFi2?cg8g>COJqW? zLR2qm?>{u8ggv`aKDiU!(i=z)@E@}t@W;>VYIuBiSF;gIduO6PQJV7b2dx(EiO0Z` zmzN8FR*s^67A)C^1c$g@>>SzMb3Jre(#ulO=#+md1ljw{Y5c>B>8Gt#stjFHXjCZs z=@+Z$?!AhGnTkv3X*%r2M)CXn?$^WH?w-T@v>}hHFuA+CcxH-<#J=ucnW9kntGF|& zz4u1ZG9j`hiK;&FVQK*x5fpnpX$g0FCE-89ZOVfAZnI9a;=H9Cq*8XF7s9^^-$ik;$F2}chtKl9d(jnWt8uNUOrJ|^*P%md4`9A>rM&7dk literal 0 HcmV?d00001 diff --git a/composeApp/src/androidMain/res/mipmap-xxhdpi/ic_launcher_round.png b/composeApp/src/androidMain/res/mipmap-xxhdpi/ic_launcher_round.png new file mode 100644 index 0000000000000000000000000000000000000000..b216f2d313cc673d8b8c4da591c174ebed52795c GIT binary patch literal 11873 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 literal 0 HcmV?d00001 diff --git a/composeApp/src/androidMain/res/values/strings.xml b/composeApp/src/androidMain/res/values/strings.xml new file mode 100644 index 0000000..6695b5a --- /dev/null +++ b/composeApp/src/androidMain/res/values/strings.xml @@ -0,0 +1,3 @@ + + Triplogic + \ No newline at end of file diff --git a/composeApp/src/commonMain/composeResources/drawable/compose-multiplatform.xml b/composeApp/src/commonMain/composeResources/drawable/compose-multiplatform.xml new file mode 100644 index 0000000..1ffc948 --- /dev/null +++ b/composeApp/src/commonMain/composeResources/drawable/compose-multiplatform.xml @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/composeApp/src/commonMain/kotlin/dev/carlosmartino/triplogic/App.kt b/composeApp/src/commonMain/kotlin/dev/carlosmartino/triplogic/App.kt new file mode 100644 index 0000000..b97ff8f --- /dev/null +++ b/composeApp/src/commonMain/kotlin/dev/carlosmartino/triplogic/App.kt @@ -0,0 +1,49 @@ +package dev.carlosmartino.triplogic + +import androidx.compose.animation.AnimatedVisibility +import androidx.compose.foundation.Image +import androidx.compose.foundation.background +import androidx.compose.foundation.layout.Column +import androidx.compose.foundation.layout.fillMaxSize +import androidx.compose.foundation.layout.fillMaxWidth +import androidx.compose.foundation.layout.safeContentPadding +import androidx.compose.material3.Button +import androidx.compose.material3.MaterialTheme +import androidx.compose.material3.Text +import androidx.compose.runtime.* +import androidx.compose.ui.Alignment +import androidx.compose.ui.Modifier +import org.jetbrains.compose.resources.painterResource +import org.jetbrains.compose.ui.tooling.preview.Preview + +import triplogic.composeapp.generated.resources.Res +import triplogic.composeapp.generated.resources.compose_multiplatform + +@Composable +@Preview +fun App() { + MaterialTheme { + var showContent by remember { mutableStateOf(false) } + Column( + modifier = Modifier + .background(MaterialTheme.colorScheme.primaryContainer) + .safeContentPadding() + .fillMaxSize(), + horizontalAlignment = Alignment.CenterHorizontally, + ) { + Button(onClick = { showContent = !showContent }) { + Text("Click me!") + } + AnimatedVisibility(showContent) { + val greeting = remember { Greeting().greet() } + Column( + modifier = Modifier.fillMaxWidth(), + horizontalAlignment = Alignment.CenterHorizontally, + ) { + Image(painterResource(Res.drawable.compose_multiplatform), null) + Text("Compose: $greeting") + } + } + } + } +} \ No newline at end of file diff --git a/composeApp/src/commonMain/kotlin/dev/carlosmartino/triplogic/Greeting.kt b/composeApp/src/commonMain/kotlin/dev/carlosmartino/triplogic/Greeting.kt new file mode 100644 index 0000000..01f374d --- /dev/null +++ b/composeApp/src/commonMain/kotlin/dev/carlosmartino/triplogic/Greeting.kt @@ -0,0 +1,9 @@ +package dev.carlosmartino.triplogic + +class Greeting { + private val platform = getPlatform() + + fun greet(): String { + return "Hello, ${platform.name}!" + } +} \ No newline at end of file diff --git a/composeApp/src/commonMain/kotlin/dev/carlosmartino/triplogic/Platform.kt b/composeApp/src/commonMain/kotlin/dev/carlosmartino/triplogic/Platform.kt new file mode 100644 index 0000000..559159b --- /dev/null +++ b/composeApp/src/commonMain/kotlin/dev/carlosmartino/triplogic/Platform.kt @@ -0,0 +1,7 @@ +package dev.carlosmartino.triplogic + +interface Platform { + val name: String +} + +expect fun getPlatform(): Platform \ No newline at end of file diff --git a/composeApp/src/commonTest/kotlin/dev/carlosmartino/triplogic/ComposeAppCommonTest.kt b/composeApp/src/commonTest/kotlin/dev/carlosmartino/triplogic/ComposeAppCommonTest.kt new file mode 100644 index 0000000..874043d --- /dev/null +++ b/composeApp/src/commonTest/kotlin/dev/carlosmartino/triplogic/ComposeAppCommonTest.kt @@ -0,0 +1,12 @@ +package dev.carlosmartino.triplogic + +import kotlin.test.Test +import kotlin.test.assertEquals + +class ComposeAppCommonTest { + + @Test + fun example() { + assertEquals(3, 1 + 2) + } +} \ No newline at end of file diff --git a/composeApp/src/iosMain/kotlin/dev/carlosmartino/triplogic/MainViewController.kt b/composeApp/src/iosMain/kotlin/dev/carlosmartino/triplogic/MainViewController.kt new file mode 100644 index 0000000..b7220d7 --- /dev/null +++ b/composeApp/src/iosMain/kotlin/dev/carlosmartino/triplogic/MainViewController.kt @@ -0,0 +1,5 @@ +package dev.carlosmartino.triplogic + +import androidx.compose.ui.window.ComposeUIViewController + +fun MainViewController() = ComposeUIViewController { App() } \ No newline at end of file diff --git a/composeApp/src/iosMain/kotlin/dev/carlosmartino/triplogic/Platform.ios.kt b/composeApp/src/iosMain/kotlin/dev/carlosmartino/triplogic/Platform.ios.kt new file mode 100644 index 0000000..a2b2ace --- /dev/null +++ b/composeApp/src/iosMain/kotlin/dev/carlosmartino/triplogic/Platform.ios.kt @@ -0,0 +1,9 @@ +package dev.carlosmartino.triplogic + +import platform.UIKit.UIDevice + +class IOSPlatform: Platform { + override val name: String = UIDevice.currentDevice.systemName() + " " + UIDevice.currentDevice.systemVersion +} + +actual fun getPlatform(): Platform = IOSPlatform() \ No newline at end of file diff --git a/gradle.properties b/gradle.properties new file mode 100644 index 0000000..6f8e6ea --- /dev/null +++ b/gradle.properties @@ -0,0 +1,12 @@ +#Kotlin +kotlin.code.style=official +kotlin.daemon.jvmargs=-Xmx3072M + +#Gradle +org.gradle.jvmargs=-Xmx4096M -Dfile.encoding=UTF-8 +org.gradle.configuration-cache=true +org.gradle.caching=true + +#Android +android.nonTransitiveRClass=true +android.useAndroidX=true \ No newline at end of file diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml new file mode 100644 index 0000000..97662d5 --- /dev/null +++ b/gradle/libs.versions.toml @@ -0,0 +1,35 @@ +[versions] +agp = "8.10.1" +android-compileSdk = "36" +android-minSdk = "24" +android-targetSdk = "36" +androidx-activity = "1.10.1" +androidx-appcompat = "1.7.1" +androidx-core = "1.17.0" +androidx-espresso = "3.7.0" +androidx-lifecycle = "2.9.3" +androidx-testExt = "1.3.0" +composeMultiplatform = "1.8.2" +junit = "4.13.2" +kotlin = "2.2.10" + +[libraries] +kotlin-test = { module = "org.jetbrains.kotlin:kotlin-test", version.ref = "kotlin" } +kotlin-testJunit = { module = "org.jetbrains.kotlin:kotlin-test-junit", version.ref = "kotlin" } +junit = { module = "junit:junit", version.ref = "junit" } +androidx-core-ktx = { module = "androidx.core:core-ktx", version.ref = "androidx-core" } +androidx-testExt-junit = { module = "androidx.test.ext:junit", version.ref = "androidx-testExt" } +androidx-espresso-core = { module = "androidx.test.espresso:espresso-core", version.ref = "androidx-espresso" } +androidx-appcompat = { module = "androidx.appcompat:appcompat", version.ref = "androidx-appcompat" } +androidx-activity-compose = { module = "androidx.activity:activity-compose", version.ref = "androidx-activity" } +androidx-lifecycle-viewmodelCompose = { module = "org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-compose", version.ref = "androidx-lifecycle" } +androidx-lifecycle-runtimeCompose = { module = "org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose", version.ref = "androidx-lifecycle" } + +[plugins] +androidApplication = { id = "com.android.application", version.ref = "agp" } +androidLibrary = { id = "com.android.library", version.ref = "agp" } +composeMultiplatform = { id = "org.jetbrains.compose", version.ref = "composeMultiplatform" } +composeCompiler = { id = "org.jetbrains.kotlin.plugin.compose", version.ref = "kotlin" } +kotlinMultiplatform = { id = "org.jetbrains.kotlin.multiplatform", version.ref = "kotlin" } +composeMultiplatformKit = { id = "dev.carlosmartino.plugins.composeMultiplatform", version = "unspecified" } +kotlinMultiplatformKit = { id = "dev.carlosmartino.plugins.kotlinMultiplatform", version = "unspecified" } \ No newline at end of file diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar new file mode 100644 index 0000000000000000000000000000000000000000..1b33c55baabb587c669f562ae36f953de2481846 GIT binary patch literal 43764 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 '} + case $link in #( + /*) app_path=$link ;; #( + *) app_path=$APP_HOME$link ;; + esac +done + +# This is normally unused +# shellcheck disable=SC2034 +APP_BASE_NAME=${0##*/} +# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036) +APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s\n' "$PWD" ) || exit + +# Use the maximum available, or set MAX_FD != -1 to use that value. +MAX_FD=maximum + +warn () { + echo "$*" +} >&2 + +die () { + echo + echo "$*" + echo + exit 1 +} >&2 + +# OS specific support (must be 'true' or 'false'). +cygwin=false +msys=false +darwin=false +nonstop=false +case "$( uname )" in #( + CYGWIN* ) cygwin=true ;; #( + Darwin* ) darwin=true ;; #( + MSYS* | MINGW* ) msys=true ;; #( + NONSTOP* ) nonstop=true ;; +esac + +CLASSPATH="\\\"\\\"" + + +# Determine the Java command to use to start the JVM. +if [ -n "$JAVA_HOME" ] ; then + if [ -x "$JAVA_HOME/jre/sh/java" ] ; then + # IBM's JDK on AIX uses strange locations for the executables + JAVACMD=$JAVA_HOME/jre/sh/java + else + JAVACMD=$JAVA_HOME/bin/java + fi + if [ ! -x "$JAVACMD" ] ; then + die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." + fi +else + JAVACMD=java + if ! command -v java >/dev/null 2>&1 + then + die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." + fi +fi + +# Increase the maximum file descriptors if we can. +if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then + case $MAX_FD in #( + max*) + # In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked. + # shellcheck disable=SC2039,SC3045 + MAX_FD=$( ulimit -H -n ) || + warn "Could not query maximum file descriptor limit" + esac + case $MAX_FD in #( + '' | soft) :;; #( + *) + # In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked. + # shellcheck disable=SC2039,SC3045 + ulimit -n "$MAX_FD" || + warn "Could not set maximum file descriptor limit to $MAX_FD" + esac +fi + +# Collect all arguments for the java command, stacking in reverse order: +# * args from the command line +# * the main class name +# * -classpath +# * -D...appname settings +# * --module-path (only if needed) +# * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables. + +# For Cygwin or MSYS, switch paths to Windows format before running java +if "$cygwin" || "$msys" ; then + APP_HOME=$( cygpath --path --mixed "$APP_HOME" ) + CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" ) + + JAVACMD=$( cygpath --unix "$JAVACMD" ) + + # Now convert the arguments - kludge to limit ourselves to /bin/sh + for arg do + if + case $arg in #( + -*) false ;; # don't mess with options #( + /?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath + [ -e "$t" ] ;; #( + *) false ;; + esac + then + arg=$( cygpath --path --ignore --mixed "$arg" ) + fi + # Roll the args list around exactly as many times as the number of + # args, so each arg winds up back in the position where it started, but + # possibly modified. + # + # NB: a `for` loop captures its iteration list before it begins, so + # changing the positional parameters here affects neither the number of + # iterations, nor the values presented in `arg`. + shift # remove old arg + set -- "$@" "$arg" # push replacement arg + done +fi + + +# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' + +# Collect all arguments for the java command: +# * DEFAULT_JVM_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments, +# and any embedded shellness will be escaped. +# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be +# treated as '${Hostname}' itself on the command line. + +set -- \ + "-Dorg.gradle.appname=$APP_BASE_NAME" \ + -classpath "$CLASSPATH" \ + -jar "$APP_HOME/gradle/wrapper/gradle-wrapper.jar" \ + "$@" + +# Stop when "xargs" is not available. +if ! command -v xargs >/dev/null 2>&1 +then + die "xargs is not available" +fi + +# Use "xargs" to parse quoted args. +# +# With -n1 it outputs one arg per line, with the quotes and backslashes removed. +# +# In Bash we could simply go: +# +# readarray ARGS < <( xargs -n1 <<<"$var" ) && +# set -- "${ARGS[@]}" "$@" +# +# but POSIX shell has neither arrays nor command substitution, so instead we +# post-process each arg (as a line of input to sed) to backslash-escape any +# character that might be a shell metacharacter, then use eval to reverse +# that process (while maintaining the separation between arguments), and wrap +# the whole thing up as a single "set" statement. +# +# This will of course break if any of these variables contains a newline or +# an unmatched quote. +# + +eval "set -- $( + printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" | + xargs -n1 | + sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' | + tr '\n' ' ' + )" '"$@"' + +exec "$JAVACMD" "$@" diff --git a/gradlew.bat b/gradlew.bat new file mode 100644 index 0000000..5eed7ee --- /dev/null +++ b/gradlew.bat @@ -0,0 +1,94 @@ +@rem +@rem Copyright 2015 the original author or authors. +@rem +@rem Licensed under the Apache License, Version 2.0 (the "License"); +@rem you may not use this file except in compliance with the License. +@rem You may obtain a copy of the License at +@rem +@rem https://www.apache.org/licenses/LICENSE-2.0 +@rem +@rem Unless required by applicable law or agreed to in writing, software +@rem distributed under the License is distributed on an "AS IS" BASIS, +@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +@rem See the License for the specific language governing permissions and +@rem limitations under the License. +@rem +@rem SPDX-License-Identifier: Apache-2.0 +@rem + +@if "%DEBUG%"=="" @echo off +@rem ########################################################################## +@rem +@rem Gradle startup script for Windows +@rem +@rem ########################################################################## + +@rem Set local scope for the variables with windows NT shell +if "%OS%"=="Windows_NT" setlocal + +set DIRNAME=%~dp0 +if "%DIRNAME%"=="" set DIRNAME=. +@rem This is normally unused +set APP_BASE_NAME=%~n0 +set APP_HOME=%DIRNAME% + +@rem Resolve any "." and ".." in APP_HOME to make it shorter. +for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi + +@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" + +@rem Find java.exe +if defined JAVA_HOME goto findJavaFromJavaHome + +set JAVA_EXE=java.exe +%JAVA_EXE% -version >NUL 2>&1 +if %ERRORLEVEL% equ 0 goto execute + +echo. 1>&2 +echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 1>&2 +echo. 1>&2 +echo Please set the JAVA_HOME variable in your environment to match the 1>&2 +echo location of your Java installation. 1>&2 + +goto fail + +:findJavaFromJavaHome +set JAVA_HOME=%JAVA_HOME:"=% +set JAVA_EXE=%JAVA_HOME%/bin/java.exe + +if exist "%JAVA_EXE%" goto execute + +echo. 1>&2 +echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 1>&2 +echo. 1>&2 +echo Please set the JAVA_HOME variable in your environment to match the 1>&2 +echo location of your Java installation. 1>&2 + +goto fail + +:execute +@rem Setup the command line + +set CLASSPATH= + + +@rem Execute Gradle +"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" -jar "%APP_HOME%\gradle\wrapper\gradle-wrapper.jar" %* + +:end +@rem End local scope for the variables with windows NT shell +if %ERRORLEVEL% equ 0 goto mainEnd + +:fail +rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of +rem the _cmd.exe /c_ return code! +set EXIT_CODE=%ERRORLEVEL% +if %EXIT_CODE% equ 0 set EXIT_CODE=1 +if not ""=="%GRADLE_EXIT_CONSOLE%" exit %EXIT_CODE% +exit /b %EXIT_CODE% + +:mainEnd +if "%OS%"=="Windows_NT" endlocal + +:omega diff --git a/iosApp/Configuration/Config.xcconfig b/iosApp/Configuration/Config.xcconfig new file mode 100644 index 0000000..ce1303b --- /dev/null +++ b/iosApp/Configuration/Config.xcconfig @@ -0,0 +1,7 @@ +TEAM_ID= + +PRODUCT_NAME=Triplogic +PRODUCT_BUNDLE_IDENTIFIER=dev.carlosmartino.triplogic.Triplogic$(TEAM_ID) + +CURRENT_PROJECT_VERSION=1 +MARKETING_VERSION=1.0 \ No newline at end of file diff --git a/iosApp/iosApp.xcodeproj/project.pbxproj b/iosApp/iosApp.xcodeproj/project.pbxproj new file mode 100644 index 0000000..000632f --- /dev/null +++ b/iosApp/iosApp.xcodeproj/project.pbxproj @@ -0,0 +1,373 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 77; + objects = { + +/* Begin PBXFileReference section */ + 7BD5FB9056FAE8C6058EFA87 /* Triplogic.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Triplogic.app; sourceTree = BUILT_PRODUCTS_DIR; }; +/* End PBXFileReference section */ + +/* Begin PBXFileSystemSynchronizedBuildFileExceptionSet section */ + 0505521B426F2A6B3D1EA4AB /* Exceptions for "iosApp" folder in "iosApp" target */ = { + isa = PBXFileSystemSynchronizedBuildFileExceptionSet; + membershipExceptions = ( + Info.plist, + ); + target = B4B7972B44BDD2578B417581 /* iosApp */; + }; +/* End PBXFileSystemSynchronizedBuildFileExceptionSet section */ + +/* Begin PBXFileSystemSynchronizedRootGroup section */ + 50A894293584D39F426D2909 /* iosApp */ = { + isa = PBXFileSystemSynchronizedRootGroup; + exceptions = ( + 0505521B426F2A6B3D1EA4AB /* Exceptions for "iosApp" folder in "iosApp" target */, + ); + path = iosApp; + sourceTree = ""; + }; + 4F2CC25E6F2973F884DB9001 /* Configuration */ = { + isa = PBXFileSystemSynchronizedRootGroup; + path = Configuration; + sourceTree = ""; + }; +/* End PBXFileSystemSynchronizedRootGroup section */ + +/* Begin PBXFrameworksBuildPhase section */ + 823AB8D8134A09EEF0331897 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 0C46EF811C87EF06BB83A18A = { + isa = PBXGroup; + children = ( + 4F2CC25E6F2973F884DB9001 /* Configuration */, + 50A894293584D39F426D2909 /* iosApp */, + B0536F6C4672B832C45F6F1F /* Products */, + ); + sourceTree = ""; + }; + B0536F6C4672B832C45F6F1F /* Products */ = { + isa = PBXGroup; + children = ( + 7BD5FB9056FAE8C6058EFA87 /* Triplogic.app */, + ); + name = Products; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + B4B7972B44BDD2578B417581 /* iosApp */ = { + isa = PBXNativeTarget; + buildConfigurationList = 3B03158D8027E3AA09EB81C0 /* Build configuration list for PBXNativeTarget "iosApp" */; + buildPhases = ( + 69F091C23B9BABFA9835FAD8 /* Compile Kotlin Framework */, + CA6D18C6E13FD5900AAD5FBB /* Sources */, + 823AB8D8134A09EEF0331897 /* Frameworks */, + 5596CB4D51EBA66E72AE6E12 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + fileSystemSynchronizedGroups = ( + 50A894293584D39F426D2909 /* iosApp */, + ); + name = iosApp; + packageProductDependencies = ( + ); + productName = iosApp; + productReference = 7BD5FB9056FAE8C6058EFA87 /* Triplogic.app */; + productType = "com.apple.product-type.application"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 8C3278762924E1F57B394E4B /* Project object */ = { + isa = PBXProject; + attributes = { + BuildIndependentTargetsInParallel = 1; + LastSwiftUpdateCheck = 1620; + LastUpgradeCheck = 1620; + TargetAttributes = { + B4B7972B44BDD2578B417581 = { + CreatedOnToolsVersion = 16.2; + }; + }; + }; + buildConfigurationList = DE4D21CE1084B8C88A2F6667 /* Build configuration list for PBXProject "iosApp" */; + developmentRegion = en; + hasScannedForEncodings = 0; + knownRegions = ( + en, + Base, + ); + mainGroup = 0C46EF811C87EF06BB83A18A; + minimizedProjectReferenceProxies = 1; + preferredProjectObjectVersion = 77; + productRefGroup = B0536F6C4672B832C45F6F1F /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + B4B7972B44BDD2578B417581 /* iosApp */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + 5596CB4D51EBA66E72AE6E12 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXShellScriptBuildPhase section */ + 69F091C23B9BABFA9835FAD8 /* Compile Kotlin Framework */ = { + isa = PBXShellScriptBuildPhase; + alwaysOutOfDate = 1; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + ); + inputPaths = ( + ); + name = "Compile Kotlin Framework"; + outputFileListPaths = ( + ); + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "if [ \"YES\" = \"$OVERRIDE_KOTLIN_BUILD_IDE_SUPPORTED\" ]; then\n echo \"Skipping Gradle build task invocation due to OVERRIDE_KOTLIN_BUILD_IDE_SUPPORTED environment variable set to \\\"YES\\\"\"\n exit 0\nfi\ncd \"$SRCROOT/..\"\n./gradlew :composeApp:embedAndSignAppleFrameworkForXcode\n"; + }; +/* End PBXShellScriptBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + CA6D18C6E13FD5900AAD5FBB /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin XCBuildConfiguration section */ + 6850730D026BE8288DCDD12A /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReferenceAnchor = 4F2CC25E6F2973F884DB9001 /* Configuration */; + baseConfigurationReferenceRelativePath = Config.xcconfig; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++20"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = dwarf; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + GCC_C_LANGUAGE_STANDARD = gnu17; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 18.2; + LOCALIZATION_PREFERS_STRING_CATALOGS = YES; + MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; + MTL_FAST_MATH = YES; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = iphoneos; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "DEBUG $(inherited)"; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + }; + name = Debug; + }; + 5CB2EA94C8E38078A645A3F9 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReferenceAnchor = 4F2CC25E6F2973F884DB9001 /* Configuration */; + baseConfigurationReferenceRelativePath = Config.xcconfig; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++20"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + GCC_C_LANGUAGE_STANDARD = gnu17; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 18.2; + LOCALIZATION_PREFERS_STRING_CATALOGS = YES; + MTL_ENABLE_DEBUG_INFO = NO; + MTL_FAST_MATH = YES; + SDKROOT = iphoneos; + SWIFT_COMPILATION_MODE = wholemodule; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 3CBB431E70FFF5CE04B4B779 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ARCHS = arm64; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; + DEVELOPMENT_ASSET_PATHS = "\"iosApp/Preview Content\""; + DEVELOPMENT_TEAM = "${TEAM_ID}"; + ENABLE_PREVIEWS = YES; + GENERATE_INFOPLIST_FILE = YES; + INFOPLIST_FILE = iosApp/Info.plist; + INFOPLIST_KEY_UIApplicationSceneManifest_Generation = YES; + INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES; + INFOPLIST_KEY_UILaunchScreen_Generation = YES; + INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; + INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + SWIFT_EMIT_LOC_STRINGS = YES; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 1E851E38673E28802FE1F55B /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ARCHS = arm64; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; + DEVELOPMENT_ASSET_PATHS = "\"iosApp/Preview Content\""; + DEVELOPMENT_TEAM = "${TEAM_ID}"; + ENABLE_PREVIEWS = YES; + GENERATE_INFOPLIST_FILE = YES; + INFOPLIST_FILE = iosApp/Info.plist; + INFOPLIST_KEY_UIApplicationSceneManifest_Generation = YES; + INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES; + INFOPLIST_KEY_UILaunchScreen_Generation = YES; + INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; + INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + SWIFT_EMIT_LOC_STRINGS = YES; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + DE4D21CE1084B8C88A2F6667 /* Build configuration list for PBXProject "iosApp" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 6850730D026BE8288DCDD12A /* Debug */, + 5CB2EA94C8E38078A645A3F9 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 3B03158D8027E3AA09EB81C0 /* Build configuration list for PBXNativeTarget "iosApp" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 3CBB431E70FFF5CE04B4B779 /* Debug */, + 1E851E38673E28802FE1F55B /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = 8C3278762924E1F57B394E4B /* Project object */; +} \ No newline at end of file diff --git a/iosApp/iosApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/iosApp/iosApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..919434a --- /dev/null +++ b/iosApp/iosApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/iosApp/iosApp.xcodeproj/project.xcworkspace/xcuserdata/imcarlost.xcuserdatad/xcschemes/xcschememanagement.plist b/iosApp/iosApp.xcodeproj/project.xcworkspace/xcuserdata/imcarlost.xcuserdatad/xcschemes/xcschememanagement.plist new file mode 100644 index 0000000..ee3458d --- /dev/null +++ b/iosApp/iosApp.xcodeproj/project.xcworkspace/xcuserdata/imcarlost.xcuserdatad/xcschemes/xcschememanagement.plist @@ -0,0 +1,5 @@ + + + + + diff --git a/iosApp/iosApp.xcodeproj/xcuserdata/imcarlost.xcuserdatad/xcschemes/iosApp.xcscheme b/iosApp/iosApp.xcodeproj/xcuserdata/imcarlost.xcuserdatad/xcschemes/iosApp.xcscheme new file mode 100644 index 0000000..4b26b8b --- /dev/null +++ b/iosApp/iosApp.xcodeproj/xcuserdata/imcarlost.xcuserdatad/xcschemes/iosApp.xcscheme @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + diff --git a/iosApp/iosApp.xcodeproj/xcuserdata/imcarlost.xcuserdatad/xcschemes/xcschememanagement.plist b/iosApp/iosApp.xcodeproj/xcuserdata/imcarlost.xcuserdatad/xcschemes/xcschememanagement.plist new file mode 100644 index 0000000..fa59f97 --- /dev/null +++ b/iosApp/iosApp.xcodeproj/xcuserdata/imcarlost.xcuserdatad/xcschemes/xcschememanagement.plist @@ -0,0 +1,14 @@ + + + + + SchemeUserState + + iosApp.xcscheme + + orderHint + 0 + + + + diff --git a/iosApp/iosApp/Assets.xcassets/AccentColor.colorset/Contents.json b/iosApp/iosApp/Assets.xcassets/AccentColor.colorset/Contents.json new file mode 100644 index 0000000..eb87897 --- /dev/null +++ b/iosApp/iosApp/Assets.xcassets/AccentColor.colorset/Contents.json @@ -0,0 +1,11 @@ +{ + "colors" : [ + { + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/iosApp/iosApp/Assets.xcassets/AppIcon.appiconset/Contents.json b/iosApp/iosApp/Assets.xcassets/AppIcon.appiconset/Contents.json new file mode 100644 index 0000000..4e8d485 --- /dev/null +++ b/iosApp/iosApp/Assets.xcassets/AppIcon.appiconset/Contents.json @@ -0,0 +1,36 @@ +{ + "images" : [ + { + "filename" : "app-icon-1024.png", + "idiom" : "universal", + "platform" : "ios", + "size" : "1024x1024" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "idiom" : "universal", + "platform" : "ios", + "size" : "1024x1024" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "tinted" + } + ], + "idiom" : "universal", + "platform" : "ios", + "size" : "1024x1024" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/iosApp/iosApp/Assets.xcassets/AppIcon.appiconset/app-icon-1024.png b/iosApp/iosApp/Assets.xcassets/AppIcon.appiconset/app-icon-1024.png new file mode 100644 index 0000000000000000000000000000000000000000..53fc536fb9ac5c1dbb27c7e1da13db3760070a11 GIT binary patch literal 67285 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 BXNCX( literal 0 HcmV?d00001 diff --git a/iosApp/iosApp/Assets.xcassets/Contents.json b/iosApp/iosApp/Assets.xcassets/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/iosApp/iosApp/Assets.xcassets/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/iosApp/iosApp/ContentView.swift b/iosApp/iosApp/ContentView.swift new file mode 100644 index 0000000..c765ff2 --- /dev/null +++ b/iosApp/iosApp/ContentView.swift @@ -0,0 +1,21 @@ +import UIKit +import SwiftUI +import ComposeApp + +struct ComposeView: UIViewControllerRepresentable { + func makeUIViewController(context: Context) -> UIViewController { + MainViewControllerKt.MainViewController() + } + + func updateUIViewController(_ uiViewController: UIViewController, context: Context) {} +} + +struct ContentView: View { + var body: some View { + ComposeView() + .ignoresSafeArea() + } +} + + + diff --git a/iosApp/iosApp/Info.plist b/iosApp/iosApp/Info.plist new file mode 100644 index 0000000..11845e1 --- /dev/null +++ b/iosApp/iosApp/Info.plist @@ -0,0 +1,8 @@ + + + + + CADisableMinimumFrameDurationOnPhone + + + diff --git a/iosApp/iosApp/Preview Content/Preview Assets.xcassets/Contents.json b/iosApp/iosApp/Preview Content/Preview Assets.xcassets/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/iosApp/iosApp/Preview Content/Preview Assets.xcassets/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/iosApp/iosApp/iOSApp.swift b/iosApp/iosApp/iOSApp.swift new file mode 100644 index 0000000..d83dca6 --- /dev/null +++ b/iosApp/iosApp/iOSApp.swift @@ -0,0 +1,10 @@ +import SwiftUI + +@main +struct iOSApp: App { + var body: some Scene { + WindowGroup { + ContentView() + } + } +} \ No newline at end of file diff --git a/local.properties b/local.properties new file mode 100644 index 0000000..a8f3f5a --- /dev/null +++ b/local.properties @@ -0,0 +1,8 @@ +## This file must *NOT* be checked into Version Control Systems, +# as it contains information specific to your local configuration. +# +# Location of the SDK. This is only used by Gradle. +# For customization when using a Version Control System, please read the +# header note. +#Wed Sep 17 10:56:21 CLST 2025 +sdk.dir=/Users/imcarlost/Library/Android/sdk diff --git a/settings.gradle.kts b/settings.gradle.kts new file mode 100644 index 0000000..aabd2e7 --- /dev/null +++ b/settings.gradle.kts @@ -0,0 +1,31 @@ +rootProject.name = "Triplogic" +enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS") + +pluginManagement { + repositories { + google { + mavenContent { + includeGroupAndSubgroups("androidx") + includeGroupAndSubgroups("com.android") + includeGroupAndSubgroups("com.google") + } + } + mavenCentral() + gradlePluginPortal() + } +} + +dependencyResolutionManagement { + repositories { + google { + mavenContent { + includeGroupAndSubgroups("androidx") + includeGroupAndSubgroups("com.android") + includeGroupAndSubgroups("com.google") + } + } + mavenCentral() + } +} + +include(":composeApp") \ No newline at end of file