From e18791ce3b7f7189b1326e520eee345557f5df3a Mon Sep 17 00:00:00 2001 From: Olivier Patry Date: Wed, 2 Oct 2024 00:38:28 +0200 Subject: [PATCH 1/7] Add Lucide Icons for About screen --- .../src/commonMain/kotlin/Copyright.kt | 77 ++++++++++++ lucide-icons/src/commonMain/kotlin/Earth.kt | 118 ++++++++++++++++++ lucide-icons/src/commonMain/kotlin/Github.kt | 87 +++++++++++++ .../kotlin/SquareArrowOutUpRight.kt | 95 ++++++++++++++ 4 files changed, 377 insertions(+) create mode 100644 lucide-icons/src/commonMain/kotlin/Copyright.kt create mode 100644 lucide-icons/src/commonMain/kotlin/Earth.kt create mode 100644 lucide-icons/src/commonMain/kotlin/Github.kt create mode 100644 lucide-icons/src/commonMain/kotlin/SquareArrowOutUpRight.kt diff --git a/lucide-icons/src/commonMain/kotlin/Copyright.kt b/lucide-icons/src/commonMain/kotlin/Copyright.kt new file mode 100644 index 00000000..41b5114e --- /dev/null +++ b/lucide-icons/src/commonMain/kotlin/Copyright.kt @@ -0,0 +1,77 @@ +/* + * Lucide License + * ISC License + * + * Copyright (c) for portions of Lucide are held by Cole Bemis 2013-2022 as part of Feather (MIT). + * All other copyright (c) for Lucide are held by Lucide Contributors 2022. + * + * Permission to use, copy, modify, and/or distribute this software for any purpose with or without + * fee is hereby granted, provided that the above copyright notice and this permission notice + * appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH + * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY + * AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, + * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING + * FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, + * NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE + * USE OR PERFORMANCE OF THIS SOFTWARE. + */ + +import androidx.compose.ui.graphics.Color +import androidx.compose.ui.graphics.PathFillType +import androidx.compose.ui.graphics.SolidColor +import androidx.compose.ui.graphics.StrokeCap +import androidx.compose.ui.graphics.StrokeJoin +import androidx.compose.ui.graphics.vector.ImageVector +import androidx.compose.ui.graphics.vector.path +import androidx.compose.ui.unit.dp + +public val LucideIcons.Copyright: ImageVector + get() { + if (_Copyright != null) { + return _Copyright!! + } + _Copyright = ImageVector.Builder( + name = "Copyright", + defaultWidth = 24.dp, + defaultHeight = 24.dp, + viewportWidth = 24f, + viewportHeight = 24f + ).apply { + path( + fill = null, + fillAlpha = 1.0f, + stroke = SolidColor(Color(0xFF000000)), + strokeAlpha = 1.0f, + strokeLineWidth = 1f, + strokeLineCap = StrokeCap.Round, + strokeLineJoin = StrokeJoin.Round, + strokeLineMiter = 1.0f, + pathFillType = PathFillType.NonZero + ) { + moveTo(22f, 12f) + arcTo(10f, 10f, 0f, isMoreThanHalf = false, isPositiveArc = true, 12f, 22f) + arcTo(10f, 10f, 0f, isMoreThanHalf = false, isPositiveArc = true, 2f, 12f) + arcTo(10f, 10f, 0f, isMoreThanHalf = false, isPositiveArc = true, 22f, 12f) + close() + } + path( + fill = null, + fillAlpha = 1.0f, + stroke = SolidColor(Color(0xFF000000)), + strokeAlpha = 1.0f, + strokeLineWidth = 1f, + strokeLineCap = StrokeCap.Round, + strokeLineJoin = StrokeJoin.Round, + strokeLineMiter = 1.0f, + pathFillType = PathFillType.NonZero + ) { + moveTo(14.83f, 14.83f) + arcToRelative(4f, 4f, 0f, isMoreThanHalf = true, isPositiveArc = true, 0f, -5.66f) + } + }.build() + return _Copyright!! + } + +private var _Copyright: ImageVector? = null diff --git a/lucide-icons/src/commonMain/kotlin/Earth.kt b/lucide-icons/src/commonMain/kotlin/Earth.kt new file mode 100644 index 00000000..10af4364 --- /dev/null +++ b/lucide-icons/src/commonMain/kotlin/Earth.kt @@ -0,0 +1,118 @@ +/* + * Lucide License + * ISC License + * + * Copyright (c) for portions of Lucide are held by Cole Bemis 2013-2022 as part of Feather (MIT). + * All other copyright (c) for Lucide are held by Lucide Contributors 2022. + * + * Permission to use, copy, modify, and/or distribute this software for any purpose with or without + * fee is hereby granted, provided that the above copyright notice and this permission notice + * appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH + * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY + * AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, + * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING + * FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, + * NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE + * USE OR PERFORMANCE OF THIS SOFTWARE. + */ + +import androidx.compose.ui.graphics.Color +import androidx.compose.ui.graphics.PathFillType +import androidx.compose.ui.graphics.SolidColor +import androidx.compose.ui.graphics.StrokeCap +import androidx.compose.ui.graphics.StrokeJoin +import androidx.compose.ui.graphics.vector.ImageVector +import androidx.compose.ui.graphics.vector.path +import androidx.compose.ui.unit.dp + +public val LucideIcons.Earth: ImageVector + get() { + if (_Earth != null) { + return _Earth!! + } + _Earth = ImageVector.Builder( + name = "Earth", + defaultWidth = 24.dp, + defaultHeight = 24.dp, + viewportWidth = 24f, + viewportHeight = 24f + ).apply { + path( + fill = null, + fillAlpha = 1.0f, + stroke = SolidColor(Color(0xFF000000)), + strokeAlpha = 1.0f, + strokeLineWidth = 1f, + strokeLineCap = StrokeCap.Round, + strokeLineJoin = StrokeJoin.Round, + strokeLineMiter = 1.0f, + pathFillType = PathFillType.NonZero + ) { + moveTo(21.54f, 15f) + horizontalLineTo(17f) + arcToRelative(2f, 2f, 0f, isMoreThanHalf = false, isPositiveArc = false, -2f, 2f) + verticalLineToRelative(4.54f) + } + path( + fill = null, + fillAlpha = 1.0f, + stroke = SolidColor(Color(0xFF000000)), + strokeAlpha = 1.0f, + strokeLineWidth = 1f, + strokeLineCap = StrokeCap.Round, + strokeLineJoin = StrokeJoin.Round, + strokeLineMiter = 1.0f, + pathFillType = PathFillType.NonZero + ) { + moveTo(7f, 3.34f) + verticalLineTo(5f) + arcToRelative(3f, 3f, 0f, isMoreThanHalf = false, isPositiveArc = false, 3f, 3f) + arcToRelative(2f, 2f, 0f, isMoreThanHalf = false, isPositiveArc = true, 2f, 2f) + curveToRelative(0f, 1.1f, 0.9f, 2f, 2f, 2f) + arcToRelative(2f, 2f, 0f, isMoreThanHalf = false, isPositiveArc = false, 2f, -2f) + curveToRelative(0f, -1.1f, 0.9f, -2f, 2f, -2f) + horizontalLineToRelative(3.17f) + } + path( + fill = null, + fillAlpha = 1.0f, + stroke = SolidColor(Color(0xFF000000)), + strokeAlpha = 1.0f, + strokeLineWidth = 1f, + strokeLineCap = StrokeCap.Round, + strokeLineJoin = StrokeJoin.Round, + strokeLineMiter = 1.0f, + pathFillType = PathFillType.NonZero + ) { + moveTo(11f, 21.95f) + verticalLineTo(18f) + arcToRelative(2f, 2f, 0f, isMoreThanHalf = false, isPositiveArc = false, -2f, -2f) + arcToRelative(2f, 2f, 0f, isMoreThanHalf = false, isPositiveArc = true, -2f, -2f) + verticalLineToRelative(-1f) + arcToRelative(2f, 2f, 0f, isMoreThanHalf = false, isPositiveArc = false, -2f, -2f) + horizontalLineTo(2.05f) + } + path( + fill = null, + fillAlpha = 1.0f, + stroke = SolidColor(Color(0xFF000000)), + strokeAlpha = 1.0f, + strokeLineWidth = 1f, + strokeLineCap = StrokeCap.Round, + strokeLineJoin = StrokeJoin.Round, + strokeLineMiter = 1.0f, + pathFillType = PathFillType.NonZero + ) { + moveTo(22f, 12f) + arcTo(10f, 10f, 0f, isMoreThanHalf = false, isPositiveArc = true, 12f, 22f) + arcTo(10f, 10f, 0f, isMoreThanHalf = false, isPositiveArc = true, 2f, 12f) + arcTo(10f, 10f, 0f, isMoreThanHalf = false, isPositiveArc = true, 22f, 12f) + close() + } + }.build() + return _Earth!! + } + +private var _Earth: ImageVector? = null diff --git a/lucide-icons/src/commonMain/kotlin/Github.kt b/lucide-icons/src/commonMain/kotlin/Github.kt new file mode 100644 index 00000000..0008d015 --- /dev/null +++ b/lucide-icons/src/commonMain/kotlin/Github.kt @@ -0,0 +1,87 @@ +/* + * Lucide License + * ISC License + * + * Copyright (c) for portions of Lucide are held by Cole Bemis 2013-2022 as part of Feather (MIT). + * All other copyright (c) for Lucide are held by Lucide Contributors 2022. + * + * Permission to use, copy, modify, and/or distribute this software for any purpose with or without + * fee is hereby granted, provided that the above copyright notice and this permission notice + * appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH + * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY + * AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, + * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING + * FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, + * NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE + * USE OR PERFORMANCE OF THIS SOFTWARE. + */ + +import androidx.compose.ui.graphics.Color +import androidx.compose.ui.graphics.PathFillType +import androidx.compose.ui.graphics.SolidColor +import androidx.compose.ui.graphics.StrokeCap +import androidx.compose.ui.graphics.StrokeJoin +import androidx.compose.ui.graphics.vector.ImageVector +import androidx.compose.ui.graphics.vector.path +import androidx.compose.ui.unit.dp + +public val LucideIcons.Github: ImageVector + get() { + if (_Github != null) { + return _Github!! + } + _Github = ImageVector.Builder( + name = "Github", + defaultWidth = 24.dp, + defaultHeight = 24.dp, + viewportWidth = 24f, + viewportHeight = 24f + ).apply { + path( + fill = null, + fillAlpha = 1.0f, + stroke = SolidColor(Color(0xFF000000)), + strokeAlpha = 1.0f, + strokeLineWidth = 1f, + strokeLineCap = StrokeCap.Round, + strokeLineJoin = StrokeJoin.Round, + strokeLineMiter = 1.0f, + pathFillType = PathFillType.NonZero + ) { + moveTo(15f, 22f) + verticalLineToRelative(-4f) + arcToRelative(4.8f, 4.8f, 0f, isMoreThanHalf = false, isPositiveArc = false, -1f, -3.5f) + curveToRelative(3f, 0f, 6f, -2f, 6f, -5.5f) + curveToRelative(0.08f, -1.25f, -0.27f, -2.48f, -1f, -3.5f) + curveToRelative(0.28f, -1.15f, 0.28f, -2.35f, 0f, -3.5f) + curveToRelative(0f, 0f, -1f, 0f, -3f, 1.5f) + curveToRelative(-2.64f, -0.5f, -5.36f, -0.5f, -8f, 0f) + curveTo(6f, 2f, 5f, 2f, 5f, 2f) + curveToRelative(-0.3f, 1.15f, -0.3f, 2.35f, 0f, 3.5f) + arcTo(5.403f, 5.403f, 0f, isMoreThanHalf = false, isPositiveArc = false, 4f, 9f) + curveToRelative(0f, 3.5f, 3f, 5.5f, 6f, 5.5f) + curveToRelative(-0.39f, 0.49f, -0.68f, 1.05f, -0.85f, 1.65f) + curveToRelative(-0.17f, 0.6f, -0.22f, 1.23f, -0.15f, 1.85f) + verticalLineToRelative(4f) + } + path( + fill = null, + fillAlpha = 1.0f, + stroke = SolidColor(Color(0xFF000000)), + strokeAlpha = 1.0f, + strokeLineWidth = 1f, + strokeLineCap = StrokeCap.Round, + strokeLineJoin = StrokeJoin.Round, + strokeLineMiter = 1.0f, + pathFillType = PathFillType.NonZero + ) { + moveTo(9f, 18f) + curveToRelative(-4.51f, 2f, -5f, -2f, -7f, -2f) + } + }.build() + return _Github!! + } + +private var _Github: ImageVector? = null diff --git a/lucide-icons/src/commonMain/kotlin/SquareArrowOutUpRight.kt b/lucide-icons/src/commonMain/kotlin/SquareArrowOutUpRight.kt new file mode 100644 index 00000000..4576121e --- /dev/null +++ b/lucide-icons/src/commonMain/kotlin/SquareArrowOutUpRight.kt @@ -0,0 +1,95 @@ +/* + * Lucide License + * ISC License + * + * Copyright (c) for portions of Lucide are held by Cole Bemis 2013-2022 as part of Feather (MIT). + * All other copyright (c) for Lucide are held by Lucide Contributors 2022. + * + * Permission to use, copy, modify, and/or distribute this software for any purpose with or without + * fee is hereby granted, provided that the above copyright notice and this permission notice + * appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH + * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY + * AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, + * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING + * FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, + * NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE + * USE OR PERFORMANCE OF THIS SOFTWARE. + */ + +import androidx.compose.ui.graphics.Color +import androidx.compose.ui.graphics.PathFillType +import androidx.compose.ui.graphics.SolidColor +import androidx.compose.ui.graphics.StrokeCap +import androidx.compose.ui.graphics.StrokeJoin +import androidx.compose.ui.graphics.vector.ImageVector +import androidx.compose.ui.graphics.vector.path +import androidx.compose.ui.unit.dp + +public val LucideIcons.SquareArrowOutUpRight: ImageVector + get() { + if (_SquareArrowOutUpRight != null) { + return _SquareArrowOutUpRight!! + } + _SquareArrowOutUpRight = ImageVector.Builder( + name = "SquareArrowOutUpRight", + defaultWidth = 24.dp, + defaultHeight = 24.dp, + viewportWidth = 24f, + viewportHeight = 24f + ).apply { + path( + fill = null, + fillAlpha = 1.0f, + stroke = SolidColor(Color(0xFF000000)), + strokeAlpha = 1.0f, + strokeLineWidth = 1f, + strokeLineCap = StrokeCap.Round, + strokeLineJoin = StrokeJoin.Round, + strokeLineMiter = 1.0f, + pathFillType = PathFillType.NonZero + ) { + moveTo(21f, 13f) + verticalLineToRelative(6f) + arcToRelative(2f, 2f, 0f, isMoreThanHalf = false, isPositiveArc = true, -2f, 2f) + horizontalLineTo(5f) + arcToRelative(2f, 2f, 0f, isMoreThanHalf = false, isPositiveArc = true, -2f, -2f) + verticalLineTo(5f) + arcToRelative(2f, 2f, 0f, isMoreThanHalf = false, isPositiveArc = true, 2f, -2f) + horizontalLineToRelative(6f) + } + path( + fill = null, + fillAlpha = 1.0f, + stroke = SolidColor(Color(0xFF000000)), + strokeAlpha = 1.0f, + strokeLineWidth = 1f, + strokeLineCap = StrokeCap.Round, + strokeLineJoin = StrokeJoin.Round, + strokeLineMiter = 1.0f, + pathFillType = PathFillType.NonZero + ) { + moveTo(21f, 3f) + lineToRelative(-9f, 9f) + } + path( + fill = null, + fillAlpha = 1.0f, + stroke = SolidColor(Color(0xFF000000)), + strokeAlpha = 1.0f, + strokeLineWidth = 1f, + strokeLineCap = StrokeCap.Round, + strokeLineJoin = StrokeJoin.Round, + strokeLineMiter = 1.0f, + pathFillType = PathFillType.NonZero + ) { + moveTo(15f, 3f) + horizontalLineToRelative(6f) + verticalLineToRelative(6f) + } + }.build() + return _SquareArrowOutUpRight!! + } + +private var _SquareArrowOutUpRight: ImageVector? = null From d6495c32a18dd7bd363bddb592269a9690d42c56 Mon Sep 17 00:00:00 2001 From: Olivier Patry Date: Wed, 2 Oct 2024 00:51:14 +0200 Subject: [PATCH 2/7] Fix Lucide Icons copyright rules for IDEA --- .idea/copyright/Lucide_License.xml | 2 +- .idea/copyright/opatry.xml | 3 +- .idea/inspectionProfiles/Project_Default.xml | 44 ++++++++++++++++++++ .idea/scopes/lucide_icons.xml | 2 +- 4 files changed, 48 insertions(+), 3 deletions(-) create mode 100644 .idea/inspectionProfiles/Project_Default.xml diff --git a/.idea/copyright/Lucide_License.xml b/.idea/copyright/Lucide_License.xml index 43e71923..17e6bb22 100644 --- a/.idea/copyright/Lucide_License.xml +++ b/.idea/copyright/Lucide_License.xml @@ -1,6 +1,6 @@ - \ No newline at end of file diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml new file mode 100644 index 00000000..a07bb9db --- /dev/null +++ b/.idea/inspectionProfiles/Project_Default.xml @@ -0,0 +1,44 @@ + + + + \ No newline at end of file diff --git a/.idea/scopes/lucide_icons.xml b/.idea/scopes/lucide_icons.xml index 4a8c20b3..13a11c03 100644 --- a/.idea/scopes/lucide_icons.xml +++ b/.idea/scopes/lucide_icons.xml @@ -1,3 +1,3 @@ - + \ No newline at end of file From 08ba2d481450022b3d07d8b21739d4ae4d91ae36 Mon Sep 17 00:00:00 2001 From: Olivier Patry Date: Wed, 2 Oct 2024 00:50:45 +0200 Subject: [PATCH 3/7] Add AboutLibraries dependency to compute credits --- build.gradle.kts | 1 + gradle/libs.versions.toml | 4 + license_config/licenses/apache2.json | 6 + license_config/licenses/asdkl.json | 6 + license_config/licenses/mit.json | 6 + tasks-app-android/build.gradle.kts | 49 + .../src/main/assets/licenses_android.json | 2617 +++++++++++++++++ tasks-app-desktop/build.gradle.kts | 37 +- .../src/main/resources/licenses_desktop.json | 1368 +++++++++ tasks-app-shared/build.gradle.kts | 2 + 10 files changed, 4093 insertions(+), 3 deletions(-) create mode 100644 license_config/licenses/apache2.json create mode 100644 license_config/licenses/asdkl.json create mode 100644 license_config/licenses/mit.json create mode 100644 tasks-app-android/src/main/assets/licenses_android.json create mode 100644 tasks-app-desktop/src/main/resources/licenses_desktop.json diff --git a/build.gradle.kts b/build.gradle.kts index 281c7db3..f9c0af68 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -33,4 +33,5 @@ plugins { alias(libs.plugins.android.library) apply false alias(libs.plugins.google.services) apply false alias(libs.plugins.firebase.crashlytics) apply false + alias(libs.plugins.about.libraries) apply false } \ No newline at end of file diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 77301b6a..1e4c08df 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -13,6 +13,7 @@ room = "2.7.0-alpha08" sqlite = "2.5.0-alpha08" koin = "4.0.0" coil = "3.0.0-alpha10" +about-libraries = "11.2.3" [libraries] kotlinx-coroutines-core = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-core", version.ref = "coroutines" } @@ -63,6 +64,8 @@ firebase-crashlytics = { module = "com.google.firebase:firebase-crashlytics" } play-services-auth = { module = "com.google.android.gms:play-services-auth", version = "21.2.0" } +about-libraries-core = { module = "com.mikepenz:aboutlibraries-core", version.ref = "about-libraries" } + [bundles] ktor-server = ["ktor-server-core", "ktor-server-cio"] ktor-client = [ @@ -89,3 +92,4 @@ ksp = { id = "com.google.devtools.ksp", version.ref = "ksp" } androidx-room = { id = "androidx.room", version.ref = "room" } google-services = { id = "com.google.gms.google-services", version = "4.4.2" } firebase-crashlytics = { id = "com.google.firebase.crashlytics", version = "3.0.2" } +about-libraries = { id = "com.mikepenz.aboutlibraries.plugin", version.ref = "about-libraries" } diff --git a/license_config/licenses/apache2.json b/license_config/licenses/apache2.json new file mode 100644 index 00000000..ebefd054 --- /dev/null +++ b/license_config/licenses/apache2.json @@ -0,0 +1,6 @@ +{ + "content": "Apache License\nVersion 2.0, January 2004\nhttp://www.apache.org/licenses/\n\nTERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n1. Definitions.\n\n\"License\" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.\n\n\"Licensor\" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.\n\n\"Legal Entity\" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, \"control\" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.\n\n\"You\" (or \"Your\") shall mean an individual or Legal Entity exercising permissions granted by this License.\n\n\"Source\" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.\n\n\"Object\" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.\n\n\"Work\" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).\n\n\"Derivative Works\" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.\n\n\"Contribution\" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, \"submitted\" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as \"Not a Contribution.\"\n\n\"Contributor\" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.\n\n2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.\n\n3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.\n\n4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:\n\n (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License.\n\n You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.\n\n5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.\n\n6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.\n\n7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.\n\n8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.\n\n9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.\n\nEND OF TERMS AND CONDITIONS\n\nAPPENDIX: How to apply the Apache License to your work.\n\nTo apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets \"[]\" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same \"printed page\" as the copyright notice for easier identification within third-party archives.\n\nCopyright [yyyy] [name of copyright owner]\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.", + "hash": "Apache-2.0", + "url": "https://spdx.org/licenses/Apache-2.0.html", + "name": "Apache License 2.0" +} \ No newline at end of file diff --git a/license_config/licenses/asdkl.json b/license_config/licenses/asdkl.json new file mode 100644 index 00000000..cb654b49 --- /dev/null +++ b/license_config/licenses/asdkl.json @@ -0,0 +1,6 @@ +{ + "content": "This is the Android Software Development Kit License Agreement\n
\n1. Introduction\n
\n1.1 The Android Software Development Kit (referred to in the License Agreement as the \"SDK\" and specifically including the Android system files, packaged APIs, and Google APIs add-ons) is licensed to you subject to the terms of the License Agreement. The License Agreement forms a legally binding contract between you and Google in relation to your use of the SDK.\n
\n1.2 \"Android\" means the Android software stack for devices, as made available under the Android Open Source Project, which is located at the following URL: http://source.android.com/, as updated from time to time.\n
\n1.3 A \"compatible implementation\" means any Android device that (i) complies with the Android Compatibility Definition document, which can be found at the Android compatibility website (http://source.android.com/compatibility) and which may be updated from time to time; and (ii) successfully passes the Android Compatibility Test Suite (CTS).\n
\n1.4 \"Google\" means Google LLC, a Delaware corporation with principal place of business at 1600 Amphitheatre Parkway, Mountain View, CA 94043, United States.\n
\n2. Accepting this License Agreement\n
\n2.1 In order to use the SDK, you must first agree to the License Agreement. You may not use the SDK if you do not accept the License Agreement.\n
\n2.2 By clicking to accept, you hereby agree to the terms of the License Agreement.\n
\n2.3 You may not use the SDK and may not accept the License Agreement if you are a person barred from receiving the SDK under the laws of the United States or other countries, including the country in which you are resident or from which you use the SDK.\n
\n2.4 If you are agreeing to be bound by the License Agreement on behalf of your employer or other entity, you represent and warrant that you have full legal authority to bind your employer or such entity to the License Agreement. If you do not have the requisite authority, you may not accept the License Agreement or use the SDK on behalf of your employer or other entity.\n
\n3. SDK License from Google\n
\n3.1 Subject to the terms of the License Agreement, Google grants you a limited, worldwide, royalty-free, non-assignable, non-exclusive, and non-sublicensable license to use the SDK solely to develop applications for compatible implementations of Android.\n
\n3.2 You may not use this SDK to develop applications for other platforms (including non-compatible implementations of Android) or to develop another SDK. You are of course free to develop applications for other platforms, including non-compatible implementations of Android, provided that this SDK is not used for that purpose.\n
\n3.3 You agree that Google or third parties own all legal right, title and interest in and to the SDK, including any Intellectual Property Rights that subsist in the SDK. \"Intellectual Property Rights\" means any and all rights under patent law, copyright law, trade secret law, trademark law, and any and all other proprietary rights. Google reserves all rights not expressly granted to you.\n
\n3.4 You may not use the SDK for any purpose not expressly permitted by the License Agreement. Except to the extent required by applicable third party licenses, you may not copy (except for backup purposes), modify, adapt, redistribute, decompile, reverse engineer, disassemble, or create derivative works of the SDK or any part of the SDK.\n
\n3.5 Use, reproduction and distribution of components of the SDK licensed under an open source software license are governed solely by the terms of that open source software license and not the License Agreement.\n
\n3.6 You agree that the form and nature of the SDK that Google provides may change without prior notice to you and that future versions of the SDK may be incompatible with applications developed on previous versions of the SDK. You agree that Google may stop (permanently or temporarily) providing the SDK (or any features within the SDK) to you or to users generally at Google's sole discretion, without prior notice to you.\n
\n3.7 Nothing in the License Agreement gives you a right to use any of Google's trade names, trademarks, service marks, logos, domain names, or other distinctive brand features.\n
\n3.8 You agree that you will not remove, obscure, or alter any proprietary rights notices (including copyright and trademark notices) that may be affixed to or contained within the SDK.\n
\n4. Use of the SDK by You\n
\n4.1 Google agrees that it obtains no right, title or interest from you (or your licensors) under the License Agreement in or to any software applications that you develop using the SDK, including any intellectual property rights that subsist in those applications.\n
\n4.2 You agree to use the SDK and write applications only for purposes that are permitted by (a) the License Agreement and (b) any applicable law, regulation or generally accepted practices or guidelines in the relevant jurisdictions (including any laws regarding the export of data or software to and from the United States or other relevant countries).\n
\n4.3 You agree that if you use the SDK to develop applications for general public users, you will protect the privacy and legal rights of those users. If the users provide you with user names, passwords, or other login information or personal information, you must make the users aware that the information will be available to your application, and you must provide legally adequate privacy notice and protection for those users. If your application stores personal or sensitive information provided by users, it must do so securely. If the user provides your application with Google Account information, your application may only use that information to access the user's Google Account when, and for the limited purposes for which, the user has given you permission to do so.\n
\n4.4 You agree that you will not engage in any activity with the SDK, including the development or distribution of an application, that interferes with, disrupts, damages, or accesses in an unauthorized manner the servers, networks, or other properties or services of any third party including, but not limited to, Google or any mobile communications carrier.\n
\n4.5 You agree that you are solely responsible for (and that Google has no responsibility to you or to any third party for) any data, content, or resources that you create, transmit or display through Android and/or applications for Android, and for the consequences of your actions (including any loss or damage which Google may suffer) by doing so.\n
\n4.6 You agree that you are solely responsible for (and that Google has no responsibility to you or to any third party for) any breach of your obligations under the License Agreement, any applicable third party contract or Terms of Service, or any applicable law or regulation, and for the consequences (including any loss or damage which Google or any third party may suffer) of any such breach.\n
\n5. Your Developer Credentials\n
\n5.1 You agree that you are responsible for maintaining the confidentiality of any developer credentials that may be issued to you by Google or which you may choose yourself and that you will be solely responsible for all applications that are developed under your developer credentials.\n
\n6. Privacy and Information\n
\n6.1 In order to continually innovate and improve the SDK, Google may collect certain usage statistics from the software including but not limited to a unique identifier, associated IP address, version number of the software, and information on which tools and/or services in the SDK are being used and how they are being used. Before any of this information is collected, the SDK will notify you and seek your consent. If you withhold consent, the information will not be collected.\n
\n6.2 The data collected is examined in the aggregate to improve the SDK and is maintained in accordance with Google's Privacy Policy.\n
\n7. Third Party Applications\n
\n7.1 If you use the SDK to run applications developed by a third party or that access data, content or resources provided by a third party, you agree that Google is not responsible for those applications, data, content, or resources. You understand that all data, content or resources which you may access through such third party applications are the sole responsibility of the person from which they originated and that Google is not liable for any loss or damage that you may experience as a result of the use or access of any of those third party applications, data, content, or resources.\n
\n7.2 You should be aware the data, content, and resources presented to you through such a third party application may be protected by intellectual property rights which are owned by the providers (or by other persons or companies on their behalf). You may not modify, rent, lease, loan, sell, distribute or create derivative works based on these data, content, or resources (either in whole or in part) unless you have been specifically given permission to do so by the relevant owners.\n
\n7.3 You acknowledge that your use of such third party applications, data, content, or resources may be subject to separate terms between you and the relevant third party. In that case, the License Agreement does not affect your legal relationship with these third parties.\n
\n8. Using Android APIs\n
\n8.1 Google Data APIs\n
\n8.1.1 If you use any API to retrieve data from Google, you acknowledge that the data may be protected by intellectual property rights which are owned by Google or those parties that provide the data (or by other persons or companies on their behalf). Your use of any such API may be subject to additional Terms of Service. You may not modify, rent, lease, loan, sell, distribute or create derivative works based on this data (either in whole or in part) unless allowed by the relevant Terms of Service.\n
\n8.1.2 If you use any API to retrieve a user's data from Google, you acknowledge and agree that you shall retrieve data only with the user's explicit consent and only when, and for the limited purposes for which, the user has given you permission to do so. If you use the Android Recognition Service API, documented at the following URL: https://developer.android.com/reference/android/speech/RecognitionService, as updated from time to time, you acknowledge that the use of the API is subject to the Data Processing Addendum for Products where Google is a Data Processor, which is located at the following URL: https://privacy.google.com/businesses/gdprprocessorterms/, as updated from time to time. By clicking to accept, you hereby agree to the terms of the Data Processing Addendum for Products where Google is a Data Processor.\n
\n9. Terminating this License Agreement\n
\n9.1 The License Agreement will continue to apply until terminated by either you or Google as set out below.\n
\n9.2 If you want to terminate the License Agreement, you may do so by ceasing your use of the SDK and any relevant developer credentials.\n
\n9.3 Google may at any time, terminate the License Agreement with you if:
\n(A) you have breached any provision of the License Agreement; or
\n(B) Google is required to do so by law; or
\n(C) the partner with whom Google offered certain parts of SDK (such as APIs) to you has terminated its relationship with Google or ceased to offer certain parts of the SDK to you; or
\n(D) Google decides to no longer provide the SDK or certain parts of the SDK to users in the country in which you are resident or from which you use the service, or the provision of the SDK or certain SDK services to you by Google is, in Google's sole discretion, no longer commercially viable.
\n
\n9.4 When the License Agreement comes to an end, all of the legal rights, obligations and liabilities that you and Google have benefited from, been subject to (or which have accrued over time whilst the License Agreement has been in force) or which are expressed to continue indefinitely, shall be unaffected by this cessation, and the provisions of paragraph 14.7 shall continue to apply to such rights, obligations and liabilities indefinitely.\n
\n10. DISCLAIMER OF WARRANTIES\n
\n10.1 YOU EXPRESSLY UNDERSTAND AND AGREE THAT YOUR USE OF THE SDK IS AT YOUR SOLE RISK AND THAT THE SDK IS PROVIDED \"AS IS\" AND \"AS AVAILABLE\" WITHOUT WARRANTY OF ANY KIND FROM GOOGLE.\n
\n10.2 YOUR USE OF THE SDK AND ANY MATERIAL DOWNLOADED OR OTHERWISE OBTAINED THROUGH THE USE OF THE SDK IS AT YOUR OWN DISCRETION AND RISK AND YOU ARE SOLELY RESPONSIBLE FOR ANY DAMAGE TO YOUR COMPUTER SYSTEM OR OTHER DEVICE OR LOSS OF DATA THAT RESULTS FROM SUCH USE.\n
\n10.3 GOOGLE FURTHER EXPRESSLY DISCLAIMS ALL WARRANTIES AND CONDITIONS OF ANY KIND, WHETHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO THE IMPLIED WARRANTIES AND CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n
\n11. LIMITATION OF LIABILITY\n
\n11.1 YOU EXPRESSLY UNDERSTAND AND AGREE THAT GOOGLE, ITS SUBSIDIARIES AND AFFILIATES, AND ITS LICENSORS SHALL NOT BE LIABLE TO YOU UNDER ANY THEORY OF LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, CONSEQUENTIAL OR EXEMPLARY DAMAGES THAT MAY BE INCURRED BY YOU, INCLUDING ANY LOSS OF DATA, WHETHER OR NOT GOOGLE OR ITS REPRESENTATIVES HAVE BEEN ADVISED OF OR SHOULD HAVE BEEN AWARE OF THE POSSIBILITY OF ANY SUCH LOSSES ARISING.\n
\n12. Indemnification\n
\n12.1 To the maximum extent permitted by law, you agree to defend, indemnify and hold harmless Google, its affiliates and their respective directors, officers, employees and agents from and against any and all claims, actions, suits or proceedings, as well as any and all losses, liabilities, damages, costs and expenses (including reasonable attorneys fees) arising out of or accruing from (a) your use of the SDK, (b) any application you develop on the SDK that infringes any copyright, trademark, trade secret, trade dress, patent or other intellectual property right of any person or defames any person or violates their rights of publicity or privacy, and (c) any non-compliance by you with the License Agreement.\n
\n13. Changes to the License Agreement\n
\n13.1 Google may make changes to the License Agreement as it distributes new versions of the SDK. When these changes are made, Google will make a new version of the License Agreement available on the website where the SDK is made available.\n
\n14. General Legal Terms\n
\n14.1 The License Agreement constitutes the whole legal agreement between you and Google and governs your use of the SDK (excluding any services which Google may provide to you under a separate written agreement), and completely replaces any prior agreements between you and Google in relation to the SDK.\n
\n14.2 You agree that if Google does not exercise or enforce any legal right or remedy which is contained in the License Agreement (or which Google has the benefit of under any applicable law), this will not be taken to be a formal waiver of Google's rights and that those rights or remedies will still be available to Google.\n
\n14.3 If any court of law, having the jurisdiction to decide on this matter, rules that any provision of the License Agreement is invalid, then that provision will be removed from the License Agreement without affecting the rest of the License Agreement. The remaining provisions of the License Agreement will continue to be valid and enforceable.\n
\n14.4 You acknowledge and agree that each member of the group of companies of which Google is the parent shall be third party beneficiaries to the License Agreement and that such other companies shall be entitled to directly enforce, and rely upon, any provision of the License Agreement that confers a benefit on (or rights in favor of) them. Other than this, no other person or company shall be third party beneficiaries to the License Agreement.\n
\n14.5 EXPORT RESTRICTIONS. THE SDK IS SUBJECT TO UNITED STATES EXPORT LAWS AND REGULATIONS. YOU MUST COMPLY WITH ALL DOMESTIC AND INTERNATIONAL EXPORT LAWS AND REGULATIONS THAT APPLY TO THE SDK. THESE LAWS INCLUDE RESTRICTIONS ON DESTINATIONS, END USERS AND END USE.\n
\n14.6 The rights granted in the License Agreement may not be assigned or transferred by either you or Google without the prior written approval of the other party. Neither you nor Google shall be permitted to delegate their responsibilities or obligations under the License Agreement without the prior written approval of the other party.\n
\n14.7 The License Agreement, and your relationship with Google under the License Agreement, shall be governed by the laws of the State of California without regard to its conflict of laws provisions. You and Google agree to submit to the exclusive jurisdiction of the courts located within the county of Santa Clara, California to resolve any legal matter arising from the License Agreement. Notwithstanding this, you agree that Google shall still be allowed to apply for injunctive remedies (or an equivalent type of urgent legal relief) in any jurisdiction.", + "hash": "asdkl", + "url": "https://developer.android.com/studio/terms.html", + "name": "Android Software Development Kit License Agreement" +} \ No newline at end of file diff --git a/license_config/licenses/mit.json b/license_config/licenses/mit.json new file mode 100644 index 00000000..5c4f62ec --- /dev/null +++ b/license_config/licenses/mit.json @@ -0,0 +1,6 @@ +{ + "content": "MIT License\n\nCopyright (c) \n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.", + "hash": "MIT", + "url": "https://spdx.org/licenses/MIT.html", + "name": "MIT License" +} \ No newline at end of file diff --git a/tasks-app-android/build.gradle.kts b/tasks-app-android/build.gradle.kts index 6b937e60..fd1e80e3 100644 --- a/tasks-app-android/build.gradle.kts +++ b/tasks-app-android/build.gradle.kts @@ -1,3 +1,29 @@ +/* + * Copyright (c) 2024 Olivier Patry + * + * Permission is hereby granted, free of charge, to any person obtaining + * a copy of this software and associated documentation files (the "Software"), + * to deal in the Software without restriction, including without limitation + * the rights to use, copy, modify, merge, publish, distribute, sublicense, + * and/or sell copies of the Software, and to permit persons to whom the Software + * is furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES + * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE + * OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ + +import com.mikepenz.aboutlibraries.plugin.DuplicateMode +import com.mikepenz.aboutlibraries.plugin.DuplicateRule +import com.mikepenz.aboutlibraries.plugin.StrictMode + /* * Copyright (c) 2024 Olivier Patry * @@ -27,6 +53,7 @@ plugins { alias(libs.plugins.jetbrains.compose) alias(libs.plugins.google.services) alias(libs.plugins.firebase.crashlytics) + alias(libs.plugins.about.libraries) } val versionCodeValue = System.getenv("CI_BUILD_NUMBER")?.toIntOrNull() ?: 1 @@ -119,6 +146,7 @@ android { buildFeatures { compose = true + buildConfig = true } packaging { @@ -157,4 +185,25 @@ dependencies { implementation(project(":google:oauth")) implementation(project(":google:tasks")) implementation(project(":tasks-app-shared")) +} + +aboutLibraries { + // - If the automatic registered android tasks are disabled, a similar thing can be achieved manually + // - `./gradlew :tasks-app-android:exportLibraryDefinitions -PaboutLibraries.exportPath=src/main/assets` + // - the resulting file can for example be added as part of the SCM + registerAndroidTasks = false + outputFileName = "licenses_android.json" + // Define the path configuration files are located in. E.g. additional libraries, licenses to add to the target .json + // Warning: Do not use the parent folder of a module as path (see https://github.com/mikepenz/AboutLibraries/issues/936) + configPath = "license_config" + offlineMode = true + fetchRemoteLicense = true + fetchRemoteFunding = false + excludeFields = arrayOf("metadata", "funding", "scm", "associated", "website", "Developer.organisationUrl", "Organization.url") + includePlatform = true + strictMode = StrictMode.FAIL + allowedLicenses = arrayOf("Apache-2.0", "asdkl", "MIT") + duplicationMode = DuplicateMode.LINK + duplicationRule = DuplicateRule.SIMPLE + prettyPrint = true } \ No newline at end of file diff --git a/tasks-app-android/src/main/assets/licenses_android.json b/tasks-app-android/src/main/assets/licenses_android.json new file mode 100644 index 00000000..1c99d2a3 --- /dev/null +++ b/tasks-app-android/src/main/assets/licenses_android.json @@ -0,0 +1,2617 @@ +{ + "libraries": [ + { + "uniqueId": "androidx.activity:activity", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "1.9.2", + "description": "Provides the base Activity subclass and the relevant hooks to build a composable structure on top.", + "name": "Activity", + "licenses": [ + "Apache-2.0" + ], + "organization": { + "name": "The Android Open Source Project" + } + }, + { + "uniqueId": "androidx.activity:activity-compose", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "1.9.2", + "description": "Compose integration with Activity", + "name": "Activity Compose", + "licenses": [ + "Apache-2.0" + ], + "organization": { + "name": "The Android Open Source Project" + } + }, + { + "uniqueId": "androidx.activity:activity-ktx", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "1.9.2", + "description": "Kotlin extensions for 'activity' artifact", + "name": "Activity Kotlin Extensions", + "licenses": [ + "Apache-2.0" + ], + "organization": { + "name": "The Android Open Source Project" + } + }, + { + "uniqueId": "androidx.annotation:annotation-experimental", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "1.4.1", + "description": "Java annotation for use on unstable Android API surfaces. When used in conjunction with the Experimental annotation lint checks, this annotation provides functional parity with Kotlin's Experimental annotation.", + "name": "Experimental annotation", + "licenses": [ + "Apache-2.0" + ], + "organization": { + "name": "The Android Open Source Project" + } + }, + { + "uniqueId": "androidx.annotation:annotation-jvm", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "1.8.1", + "description": "Provides source annotations for tooling and readability.", + "name": "Annotation", + "licenses": [ + "Apache-2.0" + ], + "organization": { + "name": "The Android Open Source Project" + } + }, + { + "uniqueId": "androidx.appcompat:appcompat", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "1.7.0", + "description": "Provides backwards-compatible implementations of UI-related Android SDK functionality, including dark mode and Material theming.", + "name": "AppCompat", + "licenses": [ + "Apache-2.0" + ], + "organization": { + "name": "The Android Open Source Project" + } + }, + { + "uniqueId": "androidx.appcompat:appcompat-resources", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "1.7.0", + "description": "Provides backward-compatible implementations of resource-related Android SDKfunctionality, including color state list theming.", + "name": "AppCompat Resources", + "licenses": [ + "Apache-2.0" + ], + "organization": { + "name": "The Android Open Source Project" + } + }, + { + "uniqueId": "androidx.arch.core:core-common", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "2.2.0", + "description": "Android Arch-Common", + "name": "Android Arch-Common", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.arch.core:core-runtime", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "2.2.0", + "description": "Android Arch-Runtime", + "name": "Android Arch-Runtime", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.autofill:autofill", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "1.0.0", + "description": "AndroidX Autofill", + "name": "AndroidX Autofill", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.collection:collection-jvm", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "1.4.2", + "description": "Standalone efficient collections.", + "name": "collections", + "licenses": [ + "Apache-2.0" + ], + "organization": { + "name": "The Android Open Source Project" + } + }, + { + "uniqueId": "androidx.collection:collection-ktx", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "1.4.2", + "description": "Kotlin extensions for 'collection' artifact", + "name": "Collections Kotlin Extensions", + "licenses": [ + "Apache-2.0" + ], + "organization": { + "name": "The Android Open Source Project" + } + }, + { + "uniqueId": "androidx.compose.animation:animation-android", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "1.7.1", + "description": "Compose animation library", + "name": "Compose Animation", + "licenses": [ + "Apache-2.0" + ], + "organization": { + "name": "The Android Open Source Project" + } + }, + { + "uniqueId": "androidx.compose.animation:animation-core-android", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "1.7.1", + "description": "Animation engine and animation primitives that are the building blocks of the Compose animation library", + "name": "Compose Animation Core", + "licenses": [ + "Apache-2.0" + ], + "organization": { + "name": "The Android Open Source Project" + } + }, + { + "uniqueId": "androidx.compose.foundation:foundation-android", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "1.7.1", + "description": "Higher level abstractions of the Compose UI primitives. This library is design system agnostic, providing the high-level building blocks for both application and design-system developers", + "name": "Compose Foundation", + "licenses": [ + "Apache-2.0" + ], + "organization": { + "name": "The Android Open Source Project" + } + }, + { + "uniqueId": "androidx.compose.foundation:foundation-layout-android", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "1.7.1", + "description": "Compose layout implementations", + "name": "Compose Layouts", + "licenses": [ + "Apache-2.0" + ], + "organization": { + "name": "The Android Open Source Project" + } + }, + { + "uniqueId": "androidx.compose.material3.adaptive:adaptive-android", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "1.0.0", + "description": "Compose Material Design Adaptive Library", + "name": "Material Adaptive", + "licenses": [ + "Apache-2.0" + ], + "organization": { + "name": "The Android Open Source Project" + } + }, + { + "uniqueId": "androidx.compose.material3.adaptive:adaptive-layout-android", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "1.0.0", + "description": "Compose Material Design Adaptive Library", + "name": "Material Adaptive", + "licenses": [ + "Apache-2.0" + ], + "organization": { + "name": "The Android Open Source Project" + } + }, + { + "uniqueId": "androidx.compose.material3.adaptive:adaptive-navigation-android", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "1.0.0", + "description": "Compose Material Design Adaptive Library", + "name": "Material Adaptive", + "licenses": [ + "Apache-2.0" + ], + "organization": { + "name": "The Android Open Source Project" + } + }, + { + "uniqueId": "androidx.compose.material3:material3-adaptive-navigation-suite-android", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "1.3.0", + "description": "Compose Material Design Adaptive Navigation Suite Library", + "name": "Material Adaptive Navigation Suite", + "licenses": [ + "Apache-2.0" + ], + "organization": { + "name": "The Android Open Source Project" + } + }, + { + "uniqueId": "androidx.compose.material3:material3-android", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "1.3.0", + "description": "Compose Material You Design Components library", + "name": "Compose Material3 Components", + "licenses": [ + "Apache-2.0" + ], + "organization": { + "name": "The Android Open Source Project" + } + }, + { + "uniqueId": "androidx.compose.material:material-icons-core-android", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "1.7.1", + "description": "Compose Material Design core icons. This module contains the most commonly used set of Material icons.", + "name": "Compose Material Icons Core", + "licenses": [ + "Apache-2.0" + ], + "organization": { + "name": "The Android Open Source Project" + } + }, + { + "uniqueId": "androidx.compose.material:material-ripple-android", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "1.7.1", + "description": "Material ripple used to build interactive components", + "name": "Compose Material Ripple", + "licenses": [ + "Apache-2.0" + ], + "organization": { + "name": "The Android Open Source Project" + } + }, + { + "uniqueId": "androidx.compose.runtime:runtime-android", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "1.7.1", + "description": "Tree composition support for code generated by the Compose compiler plugin and corresponding public API", + "name": "Compose Runtime", + "licenses": [ + "Apache-2.0" + ], + "organization": { + "name": "The Android Open Source Project" + } + }, + { + "uniqueId": "androidx.compose.runtime:runtime-saveable-android", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "1.7.1", + "description": "Compose components that allow saving and restoring the local ui state", + "name": "Compose Saveable", + "licenses": [ + "Apache-2.0" + ], + "organization": { + "name": "The Android Open Source Project" + } + }, + { + "uniqueId": "androidx.compose.ui:ui-android", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "1.7.1", + "description": "Compose UI primitives. This library contains the primitives that form the Compose UI Toolkit, such as drawing, measurement and layout.", + "name": "Compose UI", + "licenses": [ + "Apache-2.0" + ], + "organization": { + "name": "The Android Open Source Project" + } + }, + { + "uniqueId": "androidx.compose.ui:ui-geometry-android", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "1.7.1", + "description": "Compose classes related to dimensions without units", + "name": "Compose Geometry", + "licenses": [ + "Apache-2.0" + ], + "organization": { + "name": "The Android Open Source Project" + } + }, + { + "uniqueId": "androidx.compose.ui:ui-graphics-android", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "1.7.1", + "description": "Compose graphics", + "name": "Compose Graphics", + "licenses": [ + "Apache-2.0" + ], + "organization": { + "name": "The Android Open Source Project" + } + }, + { + "uniqueId": "androidx.compose.ui:ui-text-android", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "1.7.1", + "description": "Compose Text primitives and utilities", + "name": "Compose UI Text", + "licenses": [ + "Apache-2.0" + ], + "organization": { + "name": "The Android Open Source Project" + } + }, + { + "uniqueId": "androidx.compose.ui:ui-unit-android", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "1.7.1", + "description": "Compose classes for simple units", + "name": "Compose Unit", + "licenses": [ + "Apache-2.0" + ], + "organization": { + "name": "The Android Open Source Project" + } + }, + { + "uniqueId": "androidx.compose.ui:ui-util-android", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "1.7.1", + "description": "Internal Compose utilities used by other modules", + "name": "Compose Util", + "licenses": [ + "Apache-2.0" + ], + "organization": { + "name": "The Android Open Source Project" + } + }, + { + "uniqueId": "androidx.concurrent:concurrent-futures", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "1.1.0", + "description": "Androidx implementation of Guava's ListenableFuture", + "name": "AndroidX Futures", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.core:core", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "1.13.1", + "description": "Provides backward-compatible implementations of Android platform APIs and features.", + "name": "Core", + "licenses": [ + "Apache-2.0" + ], + "organization": { + "name": "The Android Open Source Project" + } + }, + { + "uniqueId": "androidx.core:core-ktx", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "1.13.1", + "description": "Kotlin extensions for 'core' artifact", + "name": "Core Kotlin Extensions", + "licenses": [ + "Apache-2.0" + ], + "organization": { + "name": "The Android Open Source Project" + } + }, + { + "uniqueId": "androidx.cursoradapter:cursoradapter", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "1.0.0", + "description": "The Support Library is a static library that you can add to your Android application in order to use APIs that are either not available for older platform versions or utility APIs that aren't a part of the framework APIs. Compatible on devices running API 14 or later.", + "name": "Support Cursor Adapter", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.customview:customview", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "1.0.0", + "description": "The Support Library is a static library that you can add to your Android application in order to use APIs that are either not available for older platform versions or utility APIs that aren't a part of the framework APIs. Compatible on devices running API 14 or later.", + "name": "Support Custom View", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.customview:customview-poolingcontainer", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "1.0.0", + "description": "Utilities for listening to the lifecycle of containers that manage their child Views' lifecycle, such as RecyclerView", + "name": "androidx.customview:poolingcontainer", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.datastore:datastore", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "1.0.0", + "description": "Android DataStore - contains the underlying store used by each serialization method along with components that require an Android dependency", + "name": "Android DataStore", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.datastore:datastore-core", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "1.0.0", + "description": "Android DataStore Core - contains the underlying store used by each serialization method", + "name": "Android DataStore Core", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.datastore:datastore-preferences", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "1.0.0", + "description": "Android Preferences DataStore", + "name": "Android Preferences DataStore", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.datastore:datastore-preferences-core", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "1.0.0", + "description": "Android Preferences DataStore without the Android Dependencies", + "name": "Android Preferences DataStore Core", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.drawerlayout:drawerlayout", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "1.0.0", + "description": "The Support Library is a static library that you can add to your Android application in order to use APIs that are either not available for older platform versions or utility APIs that aren't a part of the framework APIs. Compatible on devices running API 14 or later.", + "name": "Support Drawer Layout", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.emoji2:emoji2", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "1.3.0", + "description": "Core library to enable emoji compatibility in Kitkat and newer devices to avoid the empty emoji characters.", + "name": "Android Emoji2 Compat", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.emoji2:emoji2-views-helper", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "1.3.0", + "description": "View helpers for Emoji2", + "name": "Android Emoji2 Compat view helpers", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.exifinterface:exifinterface", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "1.3.7", + "description": "Android Support ExifInterface", + "name": "Support ExifInterface", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.fragment:fragment", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "1.8.3", + "description": "The Support Library is a static library that you can add to your Android application in order to use APIs that are either not available for older platform versions or utility APIs that aren't a part of the framework APIs. Compatible on devices running API 14 or later.", + "name": "fragment", + "licenses": [ + "Apache-2.0" + ], + "organization": { + "name": "The Android Open Source Project" + } + }, + { + "uniqueId": "androidx.fragment:fragment-ktx", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "1.8.3", + "description": "Kotlin extensions for 'fragment' artifact", + "name": "Fragment Kotlin Extensions", + "licenses": [ + "Apache-2.0" + ], + "organization": { + "name": "The Android Open Source Project" + } + }, + { + "uniqueId": "androidx.graphics:graphics-path", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "1.0.1", + "description": "Query segment data for android.graphics.Path objects", + "name": "Android Graphics Path", + "licenses": [ + "Apache-2.0" + ], + "organization": { + "name": "The Android Open Source Project" + } + }, + { + "uniqueId": "androidx.interpolator:interpolator", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "1.0.0", + "description": "The Support Library is a static library that you can add to your Android application in order to use APIs that are either not available for older platform versions or utility APIs that aren't a part of the framework APIs. Compatible on devices running API 14 or later.", + "name": "Support Interpolators", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.lifecycle:lifecycle-common-java8", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "2.8.5", + "description": "Android Lifecycle-Common for Java 8 Language", + "name": "Lifecycle-Common for Java 8", + "licenses": [ + "Apache-2.0" + ], + "organization": { + "name": "The Android Open Source Project" + } + }, + { + "uniqueId": "androidx.lifecycle:lifecycle-common-jvm", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "2.8.5", + "description": "Android Lifecycle-Common", + "name": "Lifecycle-Common", + "licenses": [ + "Apache-2.0" + ], + "organization": { + "name": "The Android Open Source Project" + } + }, + { + "uniqueId": "androidx.lifecycle:lifecycle-livedata", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "2.8.5", + "description": "Android Lifecycle LiveData", + "name": "Lifecycle LiveData", + "licenses": [ + "Apache-2.0" + ], + "organization": { + "name": "The Android Open Source Project" + } + }, + { + "uniqueId": "androidx.lifecycle:lifecycle-livedata-core", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "2.8.5", + "description": "Android Lifecycle LiveData Core", + "name": "Lifecycle LiveData Core", + "licenses": [ + "Apache-2.0" + ], + "organization": { + "name": "The Android Open Source Project" + } + }, + { + "uniqueId": "androidx.lifecycle:lifecycle-livedata-core-ktx", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "2.8.5", + "description": "Kotlin extensions for 'livedata-core' artifact", + "name": "LiveData Core Kotlin Extensions", + "licenses": [ + "Apache-2.0" + ], + "organization": { + "name": "The Android Open Source Project" + } + }, + { + "uniqueId": "androidx.lifecycle:lifecycle-process", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "2.8.5", + "description": "Android Lifecycle Process", + "name": "Lifecycle Process", + "licenses": [ + "Apache-2.0" + ], + "organization": { + "name": "The Android Open Source Project" + } + }, + { + "uniqueId": "androidx.lifecycle:lifecycle-runtime-android", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "2.8.5", + "description": "Android Lifecycle Runtime", + "name": "Lifecycle Runtime", + "licenses": [ + "Apache-2.0" + ], + "organization": { + "name": "The Android Open Source Project" + } + }, + { + "uniqueId": "androidx.lifecycle:lifecycle-runtime-compose-android", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "2.8.5", + "description": "Compose integration with Lifecycle", + "name": "Lifecycle Runtime Compose", + "licenses": [ + "Apache-2.0" + ], + "organization": { + "name": "The Android Open Source Project" + } + }, + { + "uniqueId": "androidx.lifecycle:lifecycle-runtime-ktx-android", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "2.8.5", + "description": "Kotlin extensions for 'lifecycle' artifact", + "name": "Lifecycle Kotlin Extensions", + "licenses": [ + "Apache-2.0" + ], + "organization": { + "name": "The Android Open Source Project" + } + }, + { + "uniqueId": "androidx.lifecycle:lifecycle-service", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "2.8.5", + "description": "Android Lifecycle Service", + "name": "Lifecycle Service", + "licenses": [ + "Apache-2.0" + ], + "organization": { + "name": "The Android Open Source Project" + } + }, + { + "uniqueId": "androidx.lifecycle:lifecycle-viewmodel", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "2.8.5", + "description": "Android Lifecycle ViewModel", + "name": "Lifecycle ViewModel", + "licenses": [ + "Apache-2.0" + ], + "organization": { + "name": "The Android Open Source Project" + } + }, + { + "uniqueId": "androidx.lifecycle:lifecycle-viewmodel-android", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "2.8.5", + "description": "Android Lifecycle ViewModel", + "name": "Lifecycle ViewModel", + "licenses": [ + "Apache-2.0" + ], + "organization": { + "name": "The Android Open Source Project" + } + }, + { + "uniqueId": "androidx.lifecycle:lifecycle-viewmodel-compose-android", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "2.8.5", + "description": "Compose integration with Lifecycle ViewModel", + "name": "Lifecycle ViewModel Compose", + "licenses": [ + "Apache-2.0" + ], + "organization": { + "name": "The Android Open Source Project" + } + }, + { + "uniqueId": "androidx.lifecycle:lifecycle-viewmodel-ktx", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "2.8.5", + "description": "Kotlin extensions for 'viewmodel' artifact", + "name": "Lifecycle ViewModel Kotlin Extensions", + "licenses": [ + "Apache-2.0" + ], + "organization": { + "name": "The Android Open Source Project" + } + }, + { + "uniqueId": "androidx.lifecycle:lifecycle-viewmodel-savedstate", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "2.8.5", + "description": "Android Lifecycle ViewModel", + "name": "Lifecycle ViewModel with SavedState", + "licenses": [ + "Apache-2.0" + ], + "organization": { + "name": "The Android Open Source Project" + } + }, + { + "uniqueId": "androidx.loader:loader", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "1.1.0", + "description": "The Support Library is a static library that you can add to your Android application in order to use APIs that are either not available for older platform versions or utility APIs that aren't a part of the framework APIs. Compatible on devices running API 14 or later.", + "name": "Support loader", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.profileinstaller:profileinstaller", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "1.3.1", + "description": "Allows libraries to prepopulate ahead of time compilation traces to be read by ART", + "name": "androidx.profileinstaller:profileinstaller", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.resourceinspection:resourceinspection-annotation", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "1.0.1", + "description": "Annotation processors for Android resource and layout inspection", + "name": "Android Resource Inspection - Annotations", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.room:room-common-jvm", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "2.7.0-alpha08", + "description": "Android Room-Common", + "name": "Room-Common", + "licenses": [ + "Apache-2.0" + ], + "organization": { + "name": "The Android Open Source Project" + } + }, + { + "uniqueId": "androidx.room:room-ktx", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "2.7.0-alpha08", + "description": "Android Room Kotlin Extensions", + "name": "Room Kotlin Extensions", + "licenses": [ + "Apache-2.0" + ], + "organization": { + "name": "The Android Open Source Project" + } + }, + { + "uniqueId": "androidx.room:room-runtime-android", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "2.7.0-alpha08", + "description": "Android Room-Runtime", + "name": "Room-Runtime", + "licenses": [ + "Apache-2.0" + ], + "organization": { + "name": "The Android Open Source Project" + } + }, + { + "uniqueId": "androidx.savedstate:savedstate", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "1.2.1", + "description": "Android Lifecycle Saved State", + "name": "Saved State", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.savedstate:savedstate-ktx", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "1.2.1", + "description": "Kotlin extensions for 'savedstate' artifact", + "name": "SavedState Kotlin Extensions", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.sqlite:sqlite-android", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "2.5.0-alpha08", + "description": "SQLite API", + "name": "SQLite", + "licenses": [ + "Apache-2.0" + ], + "organization": { + "name": "The Android Open Source Project" + } + }, + { + "uniqueId": "androidx.sqlite:sqlite-bundled-android", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "2.5.0-alpha08", + "description": "The implementation of SQLite library using the bundled SQLite.", + "name": "SQLite Bundled Integration", + "licenses": [ + "Apache-2.0" + ], + "organization": { + "name": "The Android Open Source Project" + } + }, + { + "uniqueId": "androidx.sqlite:sqlite-framework-android", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "2.5.0-alpha08", + "description": "The implementation of SQLite library using the framework code.", + "name": "SQLite Framework Integration", + "licenses": [ + "Apache-2.0" + ], + "organization": { + "name": "The Android Open Source Project" + } + }, + { + "uniqueId": "androidx.startup:startup-runtime", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "1.1.1", + "description": "Android App Startup Runtime", + "name": "Android App Startup Runtime", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.tracing:tracing", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "1.0.0", + "description": "Android Tracing", + "name": "Android Tracing", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.vectordrawable:vectordrawable", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "1.1.0", + "description": "Android Support VectorDrawable", + "name": "Support VectorDrawable", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.vectordrawable:vectordrawable-animated", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "1.1.0", + "description": "Android Support AnimatedVectorDrawable", + "name": "Support AnimatedVectorDrawable", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.versionedparcelable:versionedparcelable", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "1.1.1", + "description": "Provides a stable but relatively compact binary serialization format that can be passed across processes or persisted safely.", + "name": "VersionedParcelable", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.viewpager:viewpager", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "1.0.0", + "description": "The Support Library is a static library that you can add to your Android application in order to use APIs that are either not available for older platform versions or utility APIs that aren't a part of the framework APIs. Compatible on devices running API 14 or later.", + "name": "Support View Pager", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.window.extensions.core:core", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "1.0.0", + "description": "The Core APIs for Window Manager Library Extensions", + "name": "Jetpack WindowManager library Core Extensions", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.window:window", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "1.3.0", + "description": "WindowManager Jetpack library. Currently only provides additional functionality on foldable devices.", + "name": "WindowManager", + "licenses": [ + "Apache-2.0" + ], + "organization": { + "name": "The Android Open Source Project" + } + }, + { + "uniqueId": "androidx.window:window-core-android", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "1.3.0", + "description": "WindowManager Core Library.", + "name": "WindowManager Core", + "licenses": [ + "Apache-2.0" + ], + "organization": { + "name": "The Android Open Source Project" + } + }, + { + "uniqueId": "androidx.work:work-runtime", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "2.9.1", + "description": "Android WorkManager runtime library", + "name": "WorkManager Runtime", + "licenses": [ + "Apache-2.0" + ], + "organization": { + "name": "The Android Open Source Project" + } + }, + { + "uniqueId": "androidx.work:work-runtime-ktx", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "2.9.1", + "description": "Android WorkManager Kotlin Extensions", + "name": "WorkManager Kotlin Extensions", + "licenses": [ + "Apache-2.0" + ], + "organization": { + "name": "The Android Open Source Project" + } + }, + { + "uniqueId": "co.touchlab:stately-concurrency-jvm", + "developers": [ + { + "name": "Kevin Galligan" + } + ], + "artifactVersion": "2.1.0", + "description": "Multithreaded Kotlin Multiplatform Utilities", + "name": "Stately", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "co.touchlab:stately-concurrent-collections-jvm", + "developers": [ + { + "name": "Kevin Galligan" + } + ], + "artifactVersion": "2.1.0", + "description": "Multithreaded Kotlin Multiplatform Utilities", + "name": "Stately", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "co.touchlab:stately-strict-jvm", + "developers": [ + { + "name": "Kevin Galligan" + } + ], + "artifactVersion": "2.1.0", + "description": "Multithreaded Kotlin Multiplatform Utilities", + "name": "Stately", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "com.google.accompanist:accompanist-drawablepainter", + "developers": [ + { + "name": "Google" + } + ], + "artifactVersion": "0.34.0", + "description": "Utilities for Jetpack Compose", + "name": "Accompanist Drawable Painter library", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "com.google.android.datatransport:transport-api", + "developers": [ + + ], + "artifactVersion": "3.2.0", + "description": "", + "name": "com.google.android.datatransport:transport-api", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "com.google.android.datatransport:transport-backend-cct", + "developers": [ + + ], + "artifactVersion": "3.3.0", + "description": "", + "name": "com.google.android.datatransport:transport-backend-cct", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "com.google.android.datatransport:transport-runtime", + "developers": [ + + ], + "artifactVersion": "3.3.0", + "description": "", + "name": "com.google.android.datatransport:transport-runtime", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "com.google.android.gms:play-services-auth", + "developers": [ + + ], + "artifactVersion": "21.2.0", + "description": "", + "name": "play-services-auth", + "licenses": [ + "ASDKL" + ] + }, + { + "uniqueId": "com.google.android.gms:play-services-auth-api-phone", + "developers": [ + + ], + "artifactVersion": "18.0.2", + "description": "", + "name": "play-services-auth-api-phone", + "licenses": [ + "ASDKL" + ] + }, + { + "uniqueId": "com.google.android.gms:play-services-auth-base", + "developers": [ + + ], + "artifactVersion": "18.0.10", + "description": "", + "name": "play-services-auth-base", + "licenses": [ + "ASDKL" + ] + }, + { + "uniqueId": "com.google.android.gms:play-services-base", + "developers": [ + + ], + "artifactVersion": "18.3.0", + "description": "", + "name": "play-services-base", + "licenses": [ + "ASDKL" + ] + }, + { + "uniqueId": "com.google.android.gms:play-services-basement", + "developers": [ + + ], + "artifactVersion": "18.3.0", + "description": "", + "name": "play-services-basement", + "licenses": [ + "ASDKL" + ] + }, + { + "uniqueId": "com.google.android.gms:play-services-fido", + "developers": [ + + ], + "artifactVersion": "20.0.1", + "description": "", + "name": "play-services-fido", + "licenses": [ + "ASDKL" + ] + }, + { + "uniqueId": "com.google.android.gms:play-services-tasks", + "developers": [ + + ], + "artifactVersion": "18.1.0", + "description": "", + "name": "play-services-tasks", + "licenses": [ + "ASDKL" + ] + }, + { + "uniqueId": "com.google.errorprone:error_prone_annotations", + "developers": [ + + ], + "artifactVersion": "2.26.0", + "description": "Error Prone is a static analysis tool for Java that catches common programming mistakes at compile-time.", + "name": "error-prone annotations", + "licenses": [ + "Apache-2.0" + ], + "organization": { + "name": "Google LLC" + } + }, + { + "uniqueId": "com.google.firebase:firebase-annotations", + "developers": [ + + ], + "artifactVersion": "16.2.0", + "description": "", + "name": "firebase-annotations", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "com.google.firebase:firebase-bom", + "developers": [ + + ], + "artifactVersion": "33.4.0", + "description": "", + "name": "com.google.firebase:firebase-bom", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "com.google.firebase:firebase-common", + "developers": [ + + ], + "artifactVersion": "21.0.0", + "description": "", + "name": "com.google.firebase:firebase-common", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "com.google.firebase:firebase-common-ktx", + "developers": [ + + ], + "artifactVersion": "21.0.0", + "description": "", + "name": "com.google.firebase:firebase-common-ktx", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "com.google.firebase:firebase-components", + "developers": [ + + ], + "artifactVersion": "18.0.0", + "description": "", + "name": "com.google.firebase:firebase-components", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "com.google.firebase:firebase-config-interop", + "developers": [ + + ], + "artifactVersion": "16.0.1", + "description": "", + "name": "com.google.firebase:firebase-config-interop", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "com.google.firebase:firebase-crashlytics", + "developers": [ + + ], + "artifactVersion": "19.2.0", + "description": "", + "name": "com.google.firebase:firebase-crashlytics", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "com.google.firebase:firebase-datatransport", + "developers": [ + + ], + "artifactVersion": "19.0.0", + "description": "", + "name": "com.google.firebase:firebase-datatransport", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "com.google.firebase:firebase-encoders", + "developers": [ + + ], + "artifactVersion": "17.0.0", + "description": "", + "name": "firebase-encoders", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "com.google.firebase:firebase-encoders-json", + "developers": [ + + ], + "artifactVersion": "18.0.1", + "description": "", + "name": "com.google.firebase:firebase-encoders-json", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "com.google.firebase:firebase-encoders-proto", + "developers": [ + + ], + "artifactVersion": "16.0.0", + "description": "", + "name": "firebase-encoders-proto", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "com.google.firebase:firebase-installations", + "developers": [ + + ], + "artifactVersion": "18.0.0", + "description": "", + "name": "com.google.firebase:firebase-installations", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "com.google.firebase:firebase-installations-interop", + "developers": [ + + ], + "artifactVersion": "17.2.0", + "description": "", + "name": "com.google.firebase:firebase-installations-interop", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "com.google.firebase:firebase-measurement-connector", + "developers": [ + + ], + "artifactVersion": "20.0.1", + "description": "", + "name": "firebase-measurement-connector", + "licenses": [ + "ASDKL" + ] + }, + { + "uniqueId": "com.google.firebase:firebase-sessions", + "developers": [ + + ], + "artifactVersion": "2.0.5", + "description": "", + "name": "com.google.firebase:firebase-sessions", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "com.google.guava:listenablefuture", + "developers": [ + + ], + "artifactVersion": "1.0", + "description": "Contains Guava's com.google.common.util.concurrent.ListenableFuture class,\n without any of its other classes -- but is also available in a second\n \"version\" that omits the class to avoid conflicts with the copy in Guava\n itself. The idea is:\n\n - If users want only ListenableFuture, they depend on listenablefuture-1.0.\n\n - If users want all of Guava, they depend on guava, which, as of Guava\n 27.0, depends on\n listenablefuture-9999.0-empty-to-avoid-conflict-with-guava. The 9999.0-...\n version number is enough for some build systems (notably, Gradle) to select\n that empty artifact over the \"real\" listenablefuture-1.0 -- avoiding a\n conflict with the copy of ListenableFuture in guava itself. If users are\n using an older version of Guava or a build system other than Gradle, they\n may see class conflicts. If so, they can solve them by manually excluding\n the listenablefuture artifact or manually forcing their build systems to\n use 9999.0-....", + "name": "Guava ListenableFuture only", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "com.mikepenz:aboutlibraries-core-android", + "developers": [ + { + "name": "Mike Penz" + } + ], + "artifactVersion": "11.2.3", + "description": "AboutLibraries automatically detects all dependencies of a project and collects their information including the license. Optionally visualising it via the provided ui components.", + "name": "AboutLibraries Core Library", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "com.squareup.okio:okio-jvm", + "developers": [ + { + "name": "Square, Inc." + } + ], + "artifactVersion": "3.9.0", + "description": "A modern I/O library for Android, Java, and Kotlin Multiplatform.", + "name": "okio", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "com.typesafe:config", + "developers": [ + { + "name": "Havoc Pennington" + } + ], + "artifactVersion": "1.4.3", + "description": "configuration library for JVM languages using HOCON files", + "name": "config", + "licenses": [ + "Apache-2.0" + ], + "organization": { + "name": "com.typesafe" + } + }, + { + "uniqueId": "io.coil-kt.coil3:coil-android", + "developers": [ + { + "name": "Coil Contributors" + } + ], + "artifactVersion": "3.0.0-alpha10", + "description": "An image loading library for Android and Compose Multiplatform.", + "name": "coil", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "io.coil-kt.coil3:coil-compose-android", + "developers": [ + { + "name": "Coil Contributors" + } + ], + "artifactVersion": "3.0.0-alpha10", + "description": "An image loading library for Android and Compose Multiplatform.", + "name": "coil-compose", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "io.coil-kt.coil3:coil-compose-core-android", + "developers": [ + { + "name": "Coil Contributors" + } + ], + "artifactVersion": "3.0.0-alpha10", + "description": "An image loading library for Android and Compose Multiplatform.", + "name": "coil-compose-core", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "io.coil-kt.coil3:coil-core-android", + "developers": [ + { + "name": "Coil Contributors" + } + ], + "artifactVersion": "3.0.0-alpha10", + "description": "An image loading library for Android and Compose Multiplatform.", + "name": "coil-core", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "io.coil-kt.coil3:coil-network-core-android", + "developers": [ + { + "name": "Coil Contributors" + } + ], + "artifactVersion": "3.0.0-alpha10", + "description": "An image loading library for Android and Compose Multiplatform.", + "name": "coil-network-core", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "io.coil-kt.coil3:coil-network-ktor2-android", + "developers": [ + { + "name": "Coil Contributors" + } + ], + "artifactVersion": "3.0.0-alpha10", + "description": "An image loading library for Android and Compose Multiplatform.", + "name": "coil-network-ktor2", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "io.insert-koin:koin-android", + "developers": [ + { + "name": "Arnaud Giuliani" + } + ], + "artifactVersion": "4.0.0", + "description": "KOIN - Kotlin simple Dependency Injection Framework", + "name": "Koin", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "io.insert-koin:koin-androidx-startup", + "developers": [ + { + "name": "Arnaud Giuliani" + } + ], + "artifactVersion": "4.0.0", + "description": "KOIN - Kotlin simple Dependency Injection Framework", + "name": "Koin", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "io.insert-koin:koin-compose-jvm", + "developers": [ + { + "name": "Arnaud Giuliani" + } + ], + "artifactVersion": "4.0.0", + "description": "KOIN - Kotlin simple Dependency Injection Framework", + "name": "Koin", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "io.insert-koin:koin-compose-viewmodel-jvm", + "developers": [ + { + "name": "Arnaud Giuliani" + } + ], + "artifactVersion": "4.0.0", + "description": "KOIN - Kotlin simple Dependency Injection Framework", + "name": "Koin", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "io.insert-koin:koin-core-jvm", + "developers": [ + { + "name": "Arnaud Giuliani" + } + ], + "artifactVersion": "4.0.0", + "description": "KOIN - Kotlin simple Dependency Injection Framework", + "name": "Koin", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "io.insert-koin:koin-core-viewmodel-jvm", + "developers": [ + { + "name": "Arnaud Giuliani" + } + ], + "artifactVersion": "4.0.0", + "description": "KOIN - Kotlin simple Dependency Injection Framework", + "name": "Koin", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "io.ktor:ktor-client-auth-jvm", + "developers": [ + { + "name": "JetBrains Team" + } + ], + "artifactVersion": "2.3.12", + "description": "Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.", + "name": "ktor-client-auth", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "io.ktor:ktor-client-cio-jvm", + "developers": [ + { + "name": "JetBrains Team" + } + ], + "artifactVersion": "2.3.12", + "description": "Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.", + "name": "ktor-client-cio", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "io.ktor:ktor-client-content-negotiation-jvm", + "developers": [ + { + "name": "JetBrains Team" + } + ], + "artifactVersion": "2.3.12", + "description": "Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.", + "name": "ktor-client-content-negotiation", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "io.ktor:ktor-client-core-jvm", + "developers": [ + { + "name": "JetBrains Team" + } + ], + "artifactVersion": "2.3.12", + "description": "Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.", + "name": "ktor-client-core", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "io.ktor:ktor-client-logging-jvm", + "developers": [ + { + "name": "JetBrains Team" + } + ], + "artifactVersion": "2.3.12", + "description": "Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.", + "name": "ktor-client-logging", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "io.ktor:ktor-events-jvm", + "developers": [ + { + "name": "JetBrains Team" + } + ], + "artifactVersion": "2.3.12", + "description": "Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.", + "name": "ktor-events", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "io.ktor:ktor-http-cio-jvm", + "developers": [ + { + "name": "JetBrains Team" + } + ], + "artifactVersion": "2.3.12", + "description": "Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.", + "name": "ktor-http-cio", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "io.ktor:ktor-http-jvm", + "developers": [ + { + "name": "JetBrains Team" + } + ], + "artifactVersion": "2.3.12", + "description": "Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.", + "name": "ktor-http", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "io.ktor:ktor-io-jvm", + "developers": [ + { + "name": "JetBrains Team" + } + ], + "artifactVersion": "2.3.12", + "description": "Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.", + "name": "ktor-io", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "io.ktor:ktor-network-jvm", + "developers": [ + { + "name": "JetBrains Team" + } + ], + "artifactVersion": "2.3.12", + "description": "Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.", + "name": "ktor-network", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "io.ktor:ktor-network-tls-jvm", + "developers": [ + { + "name": "JetBrains Team" + } + ], + "artifactVersion": "2.3.12", + "description": "Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.", + "name": "ktor-network-tls", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "io.ktor:ktor-serialization-jvm", + "developers": [ + { + "name": "JetBrains Team" + } + ], + "artifactVersion": "2.3.12", + "description": "Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.", + "name": "ktor-serialization", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "io.ktor:ktor-serialization-kotlinx-json-jvm", + "developers": [ + { + "name": "JetBrains Team" + } + ], + "artifactVersion": "2.3.12", + "description": "Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.", + "name": "ktor-serialization-kotlinx-json", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "io.ktor:ktor-serialization-kotlinx-jvm", + "developers": [ + { + "name": "JetBrains Team" + } + ], + "artifactVersion": "2.3.12", + "description": "Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.", + "name": "ktor-serialization-kotlinx", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "io.ktor:ktor-server-cio-jvm", + "developers": [ + { + "name": "JetBrains Team" + } + ], + "artifactVersion": "2.3.12", + "description": "Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.", + "name": "ktor-server-cio", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "io.ktor:ktor-server-core-jvm", + "developers": [ + { + "name": "JetBrains Team" + } + ], + "artifactVersion": "2.3.12", + "description": "Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.", + "name": "ktor-server-core", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "io.ktor:ktor-server-host-common-jvm", + "developers": [ + { + "name": "JetBrains Team" + } + ], + "artifactVersion": "2.3.12", + "description": "Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.", + "name": "ktor-server-host-common", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "io.ktor:ktor-utils-jvm", + "developers": [ + { + "name": "JetBrains Team" + } + ], + "artifactVersion": "2.3.12", + "description": "Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.", + "name": "ktor-utils", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "io.ktor:ktor-websocket-serialization-jvm", + "developers": [ + { + "name": "JetBrains Team" + } + ], + "artifactVersion": "2.3.12", + "description": "Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.", + "name": "ktor-websocket-serialization", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "io.ktor:ktor-websockets-jvm", + "developers": [ + { + "name": "JetBrains Team" + } + ], + "artifactVersion": "2.3.12", + "description": "Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.", + "name": "ktor-websockets", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "javax.inject:javax.inject", + "developers": [ + + ], + "artifactVersion": "1", + "description": "The javax.inject API", + "name": "javax.inject", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.fusesource.jansi:jansi", + "developers": [ + { + "name": "Hiram Chirino" + }, + { + "name": "Guillaume Nodet" + } + ], + "artifactVersion": "2.4.1", + "description": "Jansi is a java library for generating and interpreting ANSI escape sequences.", + "name": "Jansi", + "licenses": [ + "Apache-2.0" + ], + "organization": { + "name": "FuseSource, Corp." + } + }, + { + "uniqueId": "org.jetbrains.androidx.core:core-bundle-android", + "developers": [ + { + "name": "Compose Multiplatform Team" + } + ], + "artifactVersion": "1.0.0", + "description": "Provides Bundle in Kotlin Multiplatform projects", + "name": "androidx.core:core-bundle", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.androidx.core:core-bundle-android-debug", + "developers": [ + { + "name": "Compose Multiplatform Team" + } + ], + "artifactVersion": "1.0.0", + "description": "Provides Bundle in Kotlin Multiplatform projects", + "name": "androidx.core:core-bundle", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.compose.components:components-resources-android", + "developers": [ + { + "name": "Compose Multiplatform Team" + } + ], + "artifactVersion": "1.7.0-rc01", + "description": "Resources for Compose JB", + "name": "Resources for Compose JB", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.kotlin:kotlin-reflect", + "developers": [ + { + "name": "Kotlin Team" + } + ], + "artifactVersion": "1.8.22", + "description": "Kotlin Full Reflection Library", + "name": "Kotlin Reflect", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.kotlin:kotlin-stdlib", + "developers": [ + { + "name": "Kotlin Team" + } + ], + "artifactVersion": "2.0.20", + "description": "Kotlin Standard Library", + "name": "Kotlin Stdlib", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.kotlin:kotlin-stdlib-jdk7", + "developers": [ + { + "name": "Kotlin Team" + } + ], + "artifactVersion": "1.8.22", + "description": "Kotlin Standard Library JDK 7 extension", + "name": "Kotlin Stdlib Jdk7", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.kotlin:kotlin-stdlib-jdk8", + "developers": [ + { + "name": "Kotlin Team" + } + ], + "artifactVersion": "1.8.22", + "description": "Kotlin Standard Library JDK 8 extension", + "name": "Kotlin Stdlib Jdk8", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.kotlinx:atomicfu-jvm", + "developers": [ + { + "name": "JetBrains Team" + } + ], + "artifactVersion": "0.23.2", + "description": "AtomicFU utilities", + "name": "atomicfu", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.kotlinx:kotlinx-collections-immutable-jvm", + "developers": [ + { + "name": "JetBrains Team" + } + ], + "artifactVersion": "0.3.7", + "description": "Kotlin Immutable Collections multiplatform library", + "name": "kotlinx-collections-immutable", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.kotlinx:kotlinx-coroutines-android", + "developers": [ + { + "name": "JetBrains Team" + } + ], + "artifactVersion": "1.9.0", + "description": "Coroutines support libraries for Kotlin", + "name": "kotlinx-coroutines-android", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.kotlinx:kotlinx-coroutines-bom", + "developers": [ + { + "name": "JetBrains Team" + } + ], + "artifactVersion": "1.9.0", + "description": "Coroutines support libraries for Kotlin", + "name": "kotlinx-coroutines-bom", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm", + "developers": [ + { + "name": "JetBrains Team" + } + ], + "artifactVersion": "1.9.0", + "description": "Coroutines support libraries for Kotlin", + "name": "kotlinx-coroutines-core", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.kotlinx:kotlinx-coroutines-jdk8", + "developers": [ + { + "name": "JetBrains Team" + } + ], + "artifactVersion": "1.9.0", + "description": "Coroutines support libraries for Kotlin", + "name": "kotlinx-coroutines-jdk8", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.kotlinx:kotlinx-coroutines-play-services", + "developers": [ + { + "name": "JetBrains Team" + } + ], + "artifactVersion": "1.9.0", + "description": "Coroutines support libraries for Kotlin", + "name": "kotlinx-coroutines-play-services", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.kotlinx:kotlinx-coroutines-slf4j", + "developers": [ + { + "name": "JetBrains Team" + } + ], + "artifactVersion": "1.9.0", + "description": "Coroutines support libraries for Kotlin", + "name": "kotlinx-coroutines-slf4j", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.kotlinx:kotlinx-datetime-jvm", + "developers": [ + { + "name": "JetBrains Team" + } + ], + "artifactVersion": "0.6.1", + "description": "Kotlin Datetime Library", + "name": "kotlinx-datetime", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.kotlinx:kotlinx-serialization-bom", + "developers": [ + { + "name": "JetBrains Team" + } + ], + "artifactVersion": "1.7.2", + "description": "Kotlin multiplatform serialization runtime library", + "name": "kotlinx-serialization-bom", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.kotlinx:kotlinx-serialization-core-jvm", + "developers": [ + { + "name": "JetBrains Team" + } + ], + "artifactVersion": "1.7.2", + "description": "Kotlin multiplatform serialization runtime library", + "name": "kotlinx-serialization-core", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.kotlinx:kotlinx-serialization-json-jvm", + "developers": [ + { + "name": "JetBrains Team" + } + ], + "artifactVersion": "1.7.2", + "description": "Kotlin multiplatform serialization runtime library", + "name": "kotlinx-serialization-json", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains:annotations", + "developers": [ + { + "name": "JetBrains Team" + } + ], + "artifactVersion": "23.0.0", + "description": "A set of annotations used for code inspection support and code documentation.", + "name": "JetBrains Java Annotations", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.slf4j:slf4j-api", + "developers": [ + + ], + "artifactVersion": "1.7.36", + "description": "The slf4j API", + "name": "SLF4J API Module", + "licenses": [ + "MIT" + ], + "organization": { + "name": "QOS.ch" + } + } + ], + "licenses": { + "ASDKL": { + "hash": "ASDKL", + "internalHash": "ASDKL", + "url": "https://developer.android.com/studio/terms.html", + "spdxId": "ASDKL", + "name": "Android Software Development Kit License" + }, + "Apache-2.0": { + "content": "Apache License\nVersion 2.0, January 2004\nhttp://www.apache.org/licenses/\n\nTERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n1. Definitions.\n\n\"License\" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.\n\n\"Licensor\" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.\n\n\"Legal Entity\" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, \"control\" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.\n\n\"You\" (or \"Your\") shall mean an individual or Legal Entity exercising permissions granted by this License.\n\n\"Source\" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.\n\n\"Object\" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.\n\n\"Work\" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).\n\n\"Derivative Works\" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.\n\n\"Contribution\" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, \"submitted\" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as \"Not a Contribution.\"\n\n\"Contributor\" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.\n\n2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.\n\n3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.\n\n4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:\n\n (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License.\n\n You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.\n\n5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.\n\n6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.\n\n7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.\n\n8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.\n\n9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.\n\nEND OF TERMS AND CONDITIONS\n\nAPPENDIX: How to apply the Apache License to your work.\n\nTo apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets \"[]\" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same \"printed page\" as the copyright notice for easier identification within third-party archives.\n\nCopyright [yyyy] [name of copyright owner]\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.", + "hash": "Apache-2.0", + "internalHash": "Apache-2.0", + "url": "https://spdx.org/licenses/Apache-2.0.html", + "spdxId": "Apache-2.0", + "name": "Apache License 2.0" + }, + "MIT": { + "content": "MIT License\n\nCopyright (c) \n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.", + "hash": "MIT", + "internalHash": "MIT", + "url": "https://spdx.org/licenses/MIT.html", + "spdxId": "MIT", + "name": "MIT License" + }, + "asdkl": { + "content": "This is the Android Software Development Kit License Agreement\n
\n1. Introduction\n
\n1.1 The Android Software Development Kit (referred to in the License Agreement as the \"SDK\" and specifically including the Android system files, packaged APIs, and Google APIs add-ons) is licensed to you subject to the terms of the License Agreement. The License Agreement forms a legally binding contract between you and Google in relation to your use of the SDK.\n
\n1.2 \"Android\" means the Android software stack for devices, as made available under the Android Open Source Project, which is located at the following URL: http://source.android.com/, as updated from time to time.\n
\n1.3 A \"compatible implementation\" means any Android device that (i) complies with the Android Compatibility Definition document, which can be found at the Android compatibility website (http://source.android.com/compatibility) and which may be updated from time to time; and (ii) successfully passes the Android Compatibility Test Suite (CTS).\n
\n1.4 \"Google\" means Google LLC, a Delaware corporation with principal place of business at 1600 Amphitheatre Parkway, Mountain View, CA 94043, United States.\n
\n2. Accepting this License Agreement\n
\n2.1 In order to use the SDK, you must first agree to the License Agreement. You may not use the SDK if you do not accept the License Agreement.\n
\n2.2 By clicking to accept, you hereby agree to the terms of the License Agreement.\n
\n2.3 You may not use the SDK and may not accept the License Agreement if you are a person barred from receiving the SDK under the laws of the United States or other countries, including the country in which you are resident or from which you use the SDK.\n
\n2.4 If you are agreeing to be bound by the License Agreement on behalf of your employer or other entity, you represent and warrant that you have full legal authority to bind your employer or such entity to the License Agreement. If you do not have the requisite authority, you may not accept the License Agreement or use the SDK on behalf of your employer or other entity.\n
\n3. SDK License from Google\n
\n3.1 Subject to the terms of the License Agreement, Google grants you a limited, worldwide, royalty-free, non-assignable, non-exclusive, and non-sublicensable license to use the SDK solely to develop applications for compatible implementations of Android.\n
\n3.2 You may not use this SDK to develop applications for other platforms (including non-compatible implementations of Android) or to develop another SDK. You are of course free to develop applications for other platforms, including non-compatible implementations of Android, provided that this SDK is not used for that purpose.\n
\n3.3 You agree that Google or third parties own all legal right, title and interest in and to the SDK, including any Intellectual Property Rights that subsist in the SDK. \"Intellectual Property Rights\" means any and all rights under patent law, copyright law, trade secret law, trademark law, and any and all other proprietary rights. Google reserves all rights not expressly granted to you.\n
\n3.4 You may not use the SDK for any purpose not expressly permitted by the License Agreement. Except to the extent required by applicable third party licenses, you may not copy (except for backup purposes), modify, adapt, redistribute, decompile, reverse engineer, disassemble, or create derivative works of the SDK or any part of the SDK.\n
\n3.5 Use, reproduction and distribution of components of the SDK licensed under an open source software license are governed solely by the terms of that open source software license and not the License Agreement.\n
\n3.6 You agree that the form and nature of the SDK that Google provides may change without prior notice to you and that future versions of the SDK may be incompatible with applications developed on previous versions of the SDK. You agree that Google may stop (permanently or temporarily) providing the SDK (or any features within the SDK) to you or to users generally at Google's sole discretion, without prior notice to you.\n
\n3.7 Nothing in the License Agreement gives you a right to use any of Google's trade names, trademarks, service marks, logos, domain names, or other distinctive brand features.\n
\n3.8 You agree that you will not remove, obscure, or alter any proprietary rights notices (including copyright and trademark notices) that may be affixed to or contained within the SDK.\n
\n4. Use of the SDK by You\n
\n4.1 Google agrees that it obtains no right, title or interest from you (or your licensors) under the License Agreement in or to any software applications that you develop using the SDK, including any intellectual property rights that subsist in those applications.\n
\n4.2 You agree to use the SDK and write applications only for purposes that are permitted by (a) the License Agreement and (b) any applicable law, regulation or generally accepted practices or guidelines in the relevant jurisdictions (including any laws regarding the export of data or software to and from the United States or other relevant countries).\n
\n4.3 You agree that if you use the SDK to develop applications for general public users, you will protect the privacy and legal rights of those users. If the users provide you with user names, passwords, or other login information or personal information, you must make the users aware that the information will be available to your application, and you must provide legally adequate privacy notice and protection for those users. If your application stores personal or sensitive information provided by users, it must do so securely. If the user provides your application with Google Account information, your application may only use that information to access the user's Google Account when, and for the limited purposes for which, the user has given you permission to do so.\n
\n4.4 You agree that you will not engage in any activity with the SDK, including the development or distribution of an application, that interferes with, disrupts, damages, or accesses in an unauthorized manner the servers, networks, or other properties or services of any third party including, but not limited to, Google or any mobile communications carrier.\n
\n4.5 You agree that you are solely responsible for (and that Google has no responsibility to you or to any third party for) any data, content, or resources that you create, transmit or display through Android and/or applications for Android, and for the consequences of your actions (including any loss or damage which Google may suffer) by doing so.\n
\n4.6 You agree that you are solely responsible for (and that Google has no responsibility to you or to any third party for) any breach of your obligations under the License Agreement, any applicable third party contract or Terms of Service, or any applicable law or regulation, and for the consequences (including any loss or damage which Google or any third party may suffer) of any such breach.\n
\n5. Your Developer Credentials\n
\n5.1 You agree that you are responsible for maintaining the confidentiality of any developer credentials that may be issued to you by Google or which you may choose yourself and that you will be solely responsible for all applications that are developed under your developer credentials.\n
\n6. Privacy and Information\n
\n6.1 In order to continually innovate and improve the SDK, Google may collect certain usage statistics from the software including but not limited to a unique identifier, associated IP address, version number of the software, and information on which tools and/or services in the SDK are being used and how they are being used. Before any of this information is collected, the SDK will notify you and seek your consent. If you withhold consent, the information will not be collected.\n
\n6.2 The data collected is examined in the aggregate to improve the SDK and is maintained in accordance with Google's Privacy Policy.\n
\n7. Third Party Applications\n
\n7.1 If you use the SDK to run applications developed by a third party or that access data, content or resources provided by a third party, you agree that Google is not responsible for those applications, data, content, or resources. You understand that all data, content or resources which you may access through such third party applications are the sole responsibility of the person from which they originated and that Google is not liable for any loss or damage that you may experience as a result of the use or access of any of those third party applications, data, content, or resources.\n
\n7.2 You should be aware the data, content, and resources presented to you through such a third party application may be protected by intellectual property rights which are owned by the providers (or by other persons or companies on their behalf). You may not modify, rent, lease, loan, sell, distribute or create derivative works based on these data, content, or resources (either in whole or in part) unless you have been specifically given permission to do so by the relevant owners.\n
\n7.3 You acknowledge that your use of such third party applications, data, content, or resources may be subject to separate terms between you and the relevant third party. In that case, the License Agreement does not affect your legal relationship with these third parties.\n
\n8. Using Android APIs\n
\n8.1 Google Data APIs\n
\n8.1.1 If you use any API to retrieve data from Google, you acknowledge that the data may be protected by intellectual property rights which are owned by Google or those parties that provide the data (or by other persons or companies on their behalf). Your use of any such API may be subject to additional Terms of Service. You may not modify, rent, lease, loan, sell, distribute or create derivative works based on this data (either in whole or in part) unless allowed by the relevant Terms of Service.\n
\n8.1.2 If you use any API to retrieve a user's data from Google, you acknowledge and agree that you shall retrieve data only with the user's explicit consent and only when, and for the limited purposes for which, the user has given you permission to do so. If you use the Android Recognition Service API, documented at the following URL: https://developer.android.com/reference/android/speech/RecognitionService, as updated from time to time, you acknowledge that the use of the API is subject to the Data Processing Addendum for Products where Google is a Data Processor, which is located at the following URL: https://privacy.google.com/businesses/gdprprocessorterms/, as updated from time to time. By clicking to accept, you hereby agree to the terms of the Data Processing Addendum for Products where Google is a Data Processor.\n
\n9. Terminating this License Agreement\n
\n9.1 The License Agreement will continue to apply until terminated by either you or Google as set out below.\n
\n9.2 If you want to terminate the License Agreement, you may do so by ceasing your use of the SDK and any relevant developer credentials.\n
\n9.3 Google may at any time, terminate the License Agreement with you if:
\n(A) you have breached any provision of the License Agreement; or
\n(B) Google is required to do so by law; or
\n(C) the partner with whom Google offered certain parts of SDK (such as APIs) to you has terminated its relationship with Google or ceased to offer certain parts of the SDK to you; or
\n(D) Google decides to no longer provide the SDK or certain parts of the SDK to users in the country in which you are resident or from which you use the service, or the provision of the SDK or certain SDK services to you by Google is, in Google's sole discretion, no longer commercially viable.
\n
\n9.4 When the License Agreement comes to an end, all of the legal rights, obligations and liabilities that you and Google have benefited from, been subject to (or which have accrued over time whilst the License Agreement has been in force) or which are expressed to continue indefinitely, shall be unaffected by this cessation, and the provisions of paragraph 14.7 shall continue to apply to such rights, obligations and liabilities indefinitely.\n
\n10. DISCLAIMER OF WARRANTIES\n
\n10.1 YOU EXPRESSLY UNDERSTAND AND AGREE THAT YOUR USE OF THE SDK IS AT YOUR SOLE RISK AND THAT THE SDK IS PROVIDED \"AS IS\" AND \"AS AVAILABLE\" WITHOUT WARRANTY OF ANY KIND FROM GOOGLE.\n
\n10.2 YOUR USE OF THE SDK AND ANY MATERIAL DOWNLOADED OR OTHERWISE OBTAINED THROUGH THE USE OF THE SDK IS AT YOUR OWN DISCRETION AND RISK AND YOU ARE SOLELY RESPONSIBLE FOR ANY DAMAGE TO YOUR COMPUTER SYSTEM OR OTHER DEVICE OR LOSS OF DATA THAT RESULTS FROM SUCH USE.\n
\n10.3 GOOGLE FURTHER EXPRESSLY DISCLAIMS ALL WARRANTIES AND CONDITIONS OF ANY KIND, WHETHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO THE IMPLIED WARRANTIES AND CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n
\n11. LIMITATION OF LIABILITY\n
\n11.1 YOU EXPRESSLY UNDERSTAND AND AGREE THAT GOOGLE, ITS SUBSIDIARIES AND AFFILIATES, AND ITS LICENSORS SHALL NOT BE LIABLE TO YOU UNDER ANY THEORY OF LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, CONSEQUENTIAL OR EXEMPLARY DAMAGES THAT MAY BE INCURRED BY YOU, INCLUDING ANY LOSS OF DATA, WHETHER OR NOT GOOGLE OR ITS REPRESENTATIVES HAVE BEEN ADVISED OF OR SHOULD HAVE BEEN AWARE OF THE POSSIBILITY OF ANY SUCH LOSSES ARISING.\n
\n12. Indemnification\n
\n12.1 To the maximum extent permitted by law, you agree to defend, indemnify and hold harmless Google, its affiliates and their respective directors, officers, employees and agents from and against any and all claims, actions, suits or proceedings, as well as any and all losses, liabilities, damages, costs and expenses (including reasonable attorneys fees) arising out of or accruing from (a) your use of the SDK, (b) any application you develop on the SDK that infringes any copyright, trademark, trade secret, trade dress, patent or other intellectual property right of any person or defames any person or violates their rights of publicity or privacy, and (c) any non-compliance by you with the License Agreement.\n
\n13. Changes to the License Agreement\n
\n13.1 Google may make changes to the License Agreement as it distributes new versions of the SDK. When these changes are made, Google will make a new version of the License Agreement available on the website where the SDK is made available.\n
\n14. General Legal Terms\n
\n14.1 The License Agreement constitutes the whole legal agreement between you and Google and governs your use of the SDK (excluding any services which Google may provide to you under a separate written agreement), and completely replaces any prior agreements between you and Google in relation to the SDK.\n
\n14.2 You agree that if Google does not exercise or enforce any legal right or remedy which is contained in the License Agreement (or which Google has the benefit of under any applicable law), this will not be taken to be a formal waiver of Google's rights and that those rights or remedies will still be available to Google.\n
\n14.3 If any court of law, having the jurisdiction to decide on this matter, rules that any provision of the License Agreement is invalid, then that provision will be removed from the License Agreement without affecting the rest of the License Agreement. The remaining provisions of the License Agreement will continue to be valid and enforceable.\n
\n14.4 You acknowledge and agree that each member of the group of companies of which Google is the parent shall be third party beneficiaries to the License Agreement and that such other companies shall be entitled to directly enforce, and rely upon, any provision of the License Agreement that confers a benefit on (or rights in favor of) them. Other than this, no other person or company shall be third party beneficiaries to the License Agreement.\n
\n14.5 EXPORT RESTRICTIONS. THE SDK IS SUBJECT TO UNITED STATES EXPORT LAWS AND REGULATIONS. YOU MUST COMPLY WITH ALL DOMESTIC AND INTERNATIONAL EXPORT LAWS AND REGULATIONS THAT APPLY TO THE SDK. THESE LAWS INCLUDE RESTRICTIONS ON DESTINATIONS, END USERS AND END USE.\n
\n14.6 The rights granted in the License Agreement may not be assigned or transferred by either you or Google without the prior written approval of the other party. Neither you nor Google shall be permitted to delegate their responsibilities or obligations under the License Agreement without the prior written approval of the other party.\n
\n14.7 The License Agreement, and your relationship with Google under the License Agreement, shall be governed by the laws of the State of California without regard to its conflict of laws provisions. You and Google agree to submit to the exclusive jurisdiction of the courts located within the county of Santa Clara, California to resolve any legal matter arising from the License Agreement. Notwithstanding this, you agree that Google shall still be allowed to apply for injunctive remedies (or an equivalent type of urgent legal relief) in any jurisdiction.", + "hash": "asdkl", + "internalHash": "asdkl", + "url": "https://developer.android.com/studio/terms.html", + "name": "Android Software Development Kit License Agreement" + } + } +} \ No newline at end of file diff --git a/tasks-app-desktop/build.gradle.kts b/tasks-app-desktop/build.gradle.kts index 4543176f..7a5689d0 100644 --- a/tasks-app-desktop/build.gradle.kts +++ b/tasks-app-desktop/build.gradle.kts @@ -20,14 +20,21 @@ * OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ +import com.mikepenz.aboutlibraries.plugin.DuplicateMode +import com.mikepenz.aboutlibraries.plugin.DuplicateRule +import com.mikepenz.aboutlibraries.plugin.StrictMode import org.jetbrains.compose.desktop.application.dsl.TargetFormat plugins { alias(libs.plugins.jetbrains.kotlin.jvm) alias(libs.plugins.jetbrains.kotlin.compose.compiler) alias(libs.plugins.jetbrains.compose) + alias(libs.plugins.about.libraries) } +val appVersion = libs.versions.tasksApp.name.get() +val appVersionCode = System.getenv("CI_BUILD_NUMBER")?.toIntOrNull() ?: 1 + kotlin { jvmToolchain(17) @@ -57,11 +64,14 @@ kotlin { compose.desktop { application { mainClass = "MainAppKt" - + jvmArgs += listOf( + "-Dapp.version=$appVersion", + "-Dapp.version.full=${appVersion}.${appVersionCode}", + ) nativeDistributions { - packageVersion = libs.versions.tasksApp.name.get() + packageVersion = appVersion packageName = "Taskfolio" - version = libs.versions.tasksApp.name.get() + version = appVersion targetFormats( TargetFormat.Dmg, ) @@ -79,3 +89,24 @@ compose.desktop { } } } + +aboutLibraries { + // - If the automatic registered android tasks are disabled, a similar thing can be achieved manually + // - `./gradlew :tasks-app-desktop:exportLibraryDefinitions -PaboutLibraries.exportPath=src/main/resources` + // - the resulting file can for example be added as part of the SCM + registerAndroidTasks = false + outputFileName = "licenses_desktop.json" + // Define the path configuration files are located in. E.g. additional libraries, licenses to add to the target .json + // Warning: Do not use the parent folder of a module as path (see https://github.com/mikepenz/AboutLibraries/issues/936) + configPath = "license_config" + offlineMode = true + fetchRemoteLicense = true + fetchRemoteFunding = false + excludeFields = arrayOf("metadata", "funding", "scm", "associated", "website", "Developer.organisationUrl", "Organization.url") + includePlatform = true + strictMode = StrictMode.FAIL + allowedLicenses = arrayOf("Apache-2.0", "asdkl", "MIT") + duplicationMode = DuplicateMode.LINK + duplicationRule = DuplicateRule.SIMPLE + prettyPrint = true +} \ No newline at end of file diff --git a/tasks-app-desktop/src/main/resources/licenses_desktop.json b/tasks-app-desktop/src/main/resources/licenses_desktop.json new file mode 100644 index 00000000..230755b6 --- /dev/null +++ b/tasks-app-desktop/src/main/resources/licenses_desktop.json @@ -0,0 +1,1368 @@ +{ + "libraries": [ + { + "uniqueId": "androidx.annotation:annotation-jvm", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "1.8.0", + "description": "Provides source annotations for tooling and readability.", + "name": "Annotation", + "licenses": [ + "Apache-2.0" + ], + "organization": { + "name": "The Android Open Source Project" + } + }, + { + "uniqueId": "androidx.arch.core:core-common", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "2.2.0", + "description": "Android Arch-Common", + "name": "Android Arch-Common", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.collection:collection-jvm", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "1.4.2", + "description": "Standalone efficient collections.", + "name": "collections", + "licenses": [ + "Apache-2.0" + ], + "organization": { + "name": "The Android Open Source Project" + } + }, + { + "uniqueId": "androidx.lifecycle:lifecycle-common-jvm", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "2.8.0", + "description": "Android Lifecycle-Common", + "name": "Lifecycle-Common", + "licenses": [ + "Apache-2.0" + ], + "organization": { + "name": "The Android Open Source Project" + } + }, + { + "uniqueId": "androidx.lifecycle:lifecycle-runtime-desktop", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "2.8.5", + "description": "Android Lifecycle Runtime", + "name": "Lifecycle Runtime", + "licenses": [ + "Apache-2.0" + ], + "organization": { + "name": "The Android Open Source Project" + } + }, + { + "uniqueId": "androidx.lifecycle:lifecycle-viewmodel-desktop", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "2.8.0", + "description": "Android Lifecycle ViewModel", + "name": "Lifecycle ViewModel", + "licenses": [ + "Apache-2.0" + ], + "organization": { + "name": "The Android Open Source Project" + } + }, + { + "uniqueId": "androidx.room:room-common-jvm", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "2.7.0-alpha08", + "description": "Android Room-Common", + "name": "Room-Common", + "licenses": [ + "Apache-2.0" + ], + "organization": { + "name": "The Android Open Source Project" + } + }, + { + "uniqueId": "androidx.room:room-runtime-jvm", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "2.7.0-alpha08", + "description": "Android Room-Runtime", + "name": "Room-Runtime", + "licenses": [ + "Apache-2.0" + ], + "organization": { + "name": "The Android Open Source Project" + } + }, + { + "uniqueId": "androidx.sqlite:sqlite-bundled-jvm", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "2.5.0-alpha08", + "description": "The implementation of SQLite library using the bundled SQLite.", + "name": "SQLite Bundled Integration", + "licenses": [ + "Apache-2.0" + ], + "organization": { + "name": "The Android Open Source Project" + } + }, + { + "uniqueId": "androidx.sqlite:sqlite-jvm", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "2.5.0-alpha08", + "description": "SQLite API", + "name": "SQLite", + "licenses": [ + "Apache-2.0" + ], + "organization": { + "name": "The Android Open Source Project" + } + }, + { + "uniqueId": "co.touchlab:stately-concurrency-jvm", + "developers": [ + { + "name": "Kevin Galligan" + } + ], + "artifactVersion": "2.1.0", + "description": "Multithreaded Kotlin Multiplatform Utilities", + "name": "Stately", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "co.touchlab:stately-concurrent-collections-jvm", + "developers": [ + { + "name": "Kevin Galligan" + } + ], + "artifactVersion": "2.1.0", + "description": "Multithreaded Kotlin Multiplatform Utilities", + "name": "Stately", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "co.touchlab:stately-strict-jvm", + "developers": [ + { + "name": "Kevin Galligan" + } + ], + "artifactVersion": "2.1.0", + "description": "Multithreaded Kotlin Multiplatform Utilities", + "name": "Stately", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "com.mikepenz:aboutlibraries-core-jvm", + "developers": [ + { + "name": "Mike Penz" + } + ], + "artifactVersion": "11.2.3", + "description": "AboutLibraries automatically detects all dependencies of a project and collects their information including the license. Optionally visualising it via the provided ui components.", + "name": "AboutLibraries Core Library", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "com.squareup.okio:okio-jvm", + "developers": [ + { + "name": "Square, Inc." + } + ], + "artifactVersion": "3.9.0", + "description": "A modern I/O library for Android, Java, and Kotlin Multiplatform.", + "name": "okio", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "com.typesafe:config", + "developers": [ + { + "name": "Havoc Pennington" + } + ], + "artifactVersion": "1.4.3", + "description": "configuration library for JVM languages using HOCON files", + "name": "config", + "licenses": [ + "Apache-2.0" + ], + "organization": { + "name": "com.typesafe" + } + }, + { + "uniqueId": "io.coil-kt.coil3:coil-compose-core-jvm", + "developers": [ + { + "name": "Coil Contributors" + } + ], + "artifactVersion": "3.0.0-alpha10", + "description": "An image loading library for Android and Compose Multiplatform.", + "name": "coil-compose-core", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "io.coil-kt.coil3:coil-compose-jvm", + "developers": [ + { + "name": "Coil Contributors" + } + ], + "artifactVersion": "3.0.0-alpha10", + "description": "An image loading library for Android and Compose Multiplatform.", + "name": "coil-compose", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "io.coil-kt.coil3:coil-core-jvm", + "developers": [ + { + "name": "Coil Contributors" + } + ], + "artifactVersion": "3.0.0-alpha10", + "description": "An image loading library for Android and Compose Multiplatform.", + "name": "coil-core", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "io.coil-kt.coil3:coil-jvm", + "developers": [ + { + "name": "Coil Contributors" + } + ], + "artifactVersion": "3.0.0-alpha10", + "description": "An image loading library for Android and Compose Multiplatform.", + "name": "coil", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "io.coil-kt.coil3:coil-network-core-jvm", + "developers": [ + { + "name": "Coil Contributors" + } + ], + "artifactVersion": "3.0.0-alpha10", + "description": "An image loading library for Android and Compose Multiplatform.", + "name": "coil-network-core", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "io.coil-kt.coil3:coil-network-ktor2-jvm", + "developers": [ + { + "name": "Coil Contributors" + } + ], + "artifactVersion": "3.0.0-alpha10", + "description": "An image loading library for Android and Compose Multiplatform.", + "name": "coil-network-ktor2", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "io.insert-koin:koin-compose-jvm", + "developers": [ + { + "name": "Arnaud Giuliani" + } + ], + "artifactVersion": "4.0.0", + "description": "KOIN - Kotlin simple Dependency Injection Framework", + "name": "Koin", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "io.insert-koin:koin-compose-viewmodel-jvm", + "developers": [ + { + "name": "Arnaud Giuliani" + } + ], + "artifactVersion": "4.0.0", + "description": "KOIN - Kotlin simple Dependency Injection Framework", + "name": "Koin", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "io.insert-koin:koin-core-jvm", + "developers": [ + { + "name": "Arnaud Giuliani" + } + ], + "artifactVersion": "4.0.0", + "description": "KOIN - Kotlin simple Dependency Injection Framework", + "name": "Koin", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "io.insert-koin:koin-core-viewmodel-jvm", + "developers": [ + { + "name": "Arnaud Giuliani" + } + ], + "artifactVersion": "4.0.0", + "description": "KOIN - Kotlin simple Dependency Injection Framework", + "name": "Koin", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "io.ktor:ktor-client-auth-jvm", + "developers": [ + { + "name": "JetBrains Team" + } + ], + "artifactVersion": "2.3.12", + "description": "Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.", + "name": "ktor-client-auth", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "io.ktor:ktor-client-cio-jvm", + "developers": [ + { + "name": "JetBrains Team" + } + ], + "artifactVersion": "2.3.12", + "description": "Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.", + "name": "ktor-client-cio", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "io.ktor:ktor-client-content-negotiation-jvm", + "developers": [ + { + "name": "JetBrains Team" + } + ], + "artifactVersion": "2.3.12", + "description": "Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.", + "name": "ktor-client-content-negotiation", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "io.ktor:ktor-client-core-jvm", + "developers": [ + { + "name": "JetBrains Team" + } + ], + "artifactVersion": "2.3.12", + "description": "Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.", + "name": "ktor-client-core", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "io.ktor:ktor-client-logging-jvm", + "developers": [ + { + "name": "JetBrains Team" + } + ], + "artifactVersion": "2.3.12", + "description": "Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.", + "name": "ktor-client-logging", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "io.ktor:ktor-events-jvm", + "developers": [ + { + "name": "JetBrains Team" + } + ], + "artifactVersion": "2.3.12", + "description": "Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.", + "name": "ktor-events", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "io.ktor:ktor-http-cio-jvm", + "developers": [ + { + "name": "JetBrains Team" + } + ], + "artifactVersion": "2.3.12", + "description": "Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.", + "name": "ktor-http-cio", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "io.ktor:ktor-http-jvm", + "developers": [ + { + "name": "JetBrains Team" + } + ], + "artifactVersion": "2.3.12", + "description": "Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.", + "name": "ktor-http", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "io.ktor:ktor-io-jvm", + "developers": [ + { + "name": "JetBrains Team" + } + ], + "artifactVersion": "2.3.12", + "description": "Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.", + "name": "ktor-io", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "io.ktor:ktor-network-jvm", + "developers": [ + { + "name": "JetBrains Team" + } + ], + "artifactVersion": "2.3.12", + "description": "Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.", + "name": "ktor-network", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "io.ktor:ktor-network-tls-jvm", + "developers": [ + { + "name": "JetBrains Team" + } + ], + "artifactVersion": "2.3.12", + "description": "Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.", + "name": "ktor-network-tls", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "io.ktor:ktor-serialization-jvm", + "developers": [ + { + "name": "JetBrains Team" + } + ], + "artifactVersion": "2.3.12", + "description": "Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.", + "name": "ktor-serialization", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "io.ktor:ktor-serialization-kotlinx-json-jvm", + "developers": [ + { + "name": "JetBrains Team" + } + ], + "artifactVersion": "2.3.12", + "description": "Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.", + "name": "ktor-serialization-kotlinx-json", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "io.ktor:ktor-serialization-kotlinx-jvm", + "developers": [ + { + "name": "JetBrains Team" + } + ], + "artifactVersion": "2.3.12", + "description": "Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.", + "name": "ktor-serialization-kotlinx", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "io.ktor:ktor-server-cio-jvm", + "developers": [ + { + "name": "JetBrains Team" + } + ], + "artifactVersion": "2.3.12", + "description": "Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.", + "name": "ktor-server-cio", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "io.ktor:ktor-server-core-jvm", + "developers": [ + { + "name": "JetBrains Team" + } + ], + "artifactVersion": "2.3.12", + "description": "Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.", + "name": "ktor-server-core", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "io.ktor:ktor-server-host-common-jvm", + "developers": [ + { + "name": "JetBrains Team" + } + ], + "artifactVersion": "2.3.12", + "description": "Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.", + "name": "ktor-server-host-common", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "io.ktor:ktor-utils-jvm", + "developers": [ + { + "name": "JetBrains Team" + } + ], + "artifactVersion": "2.3.12", + "description": "Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.", + "name": "ktor-utils", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "io.ktor:ktor-websocket-serialization-jvm", + "developers": [ + { + "name": "JetBrains Team" + } + ], + "artifactVersion": "2.3.12", + "description": "Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.", + "name": "ktor-websocket-serialization", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "io.ktor:ktor-websockets-jvm", + "developers": [ + { + "name": "JetBrains Team" + } + ], + "artifactVersion": "2.3.12", + "description": "Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.", + "name": "ktor-websockets", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.fusesource.jansi:jansi", + "developers": [ + { + "name": "Hiram Chirino" + }, + { + "name": "Guillaume Nodet" + } + ], + "artifactVersion": "2.4.1", + "description": "Jansi is a java library for generating and interpreting ANSI escape sequences.", + "name": "Jansi", + "licenses": [ + "Apache-2.0" + ], + "organization": { + "name": "FuseSource, Corp." + } + }, + { + "uniqueId": "org.jetbrains.androidx.core:core-bundle-desktop", + "developers": [ + { + "name": "Compose Multiplatform Team" + } + ], + "artifactVersion": "1.0.0", + "description": "Provides Bundle in Kotlin Multiplatform projects", + "name": "androidx.core:core-bundle", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose-desktop", + "developers": [ + { + "name": "Compose Multiplatform Team" + } + ], + "artifactVersion": "2.8.3-rc01", + "description": "Compose integration with Lifecycle", + "name": "Lifecycle Runtime Compose", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-compose-desktop", + "developers": [ + { + "name": "Compose Multiplatform Team" + } + ], + "artifactVersion": "2.8.0", + "description": "Compose integration with Lifecycle ViewModel", + "name": "Lifecycle ViewModel Compose", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-savedstate-desktop", + "developers": [ + { + "name": "Compose Multiplatform Team" + } + ], + "artifactVersion": "2.8.0", + "description": "Android Lifecycle ViewModel", + "name": "Lifecycle ViewModel with SavedState", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.androidx.savedstate:savedstate-desktop", + "developers": [ + { + "name": "Compose Multiplatform Team" + } + ], + "artifactVersion": "1.2.0", + "description": "Android Lifecycle Saved State", + "name": "Saved State", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.androidx.window:window-core-desktop", + "developers": [ + { + "name": "Compose Multiplatform Team" + } + ], + "artifactVersion": "1.3.0-rc01", + "description": "WindowManager Core Library.", + "name": "WindowManager Core", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.compose.animation:animation-core-desktop", + "developers": [ + { + "name": "Compose Multiplatform Team" + } + ], + "artifactVersion": "1.7.0-rc01", + "description": "Animation engine and animation primitives that are the building blocks of the Compose animation library", + "name": "Compose Animation Core", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.compose.animation:animation-desktop", + "developers": [ + { + "name": "Compose Multiplatform Team" + } + ], + "artifactVersion": "1.7.0-rc01", + "description": "Compose animation library", + "name": "Compose Animation", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.compose.components:components-resources-desktop", + "developers": [ + { + "name": "Compose Multiplatform Team" + } + ], + "artifactVersion": "1.7.0-rc01", + "description": "Resources for Compose JB", + "name": "Resources for Compose JB", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.compose.desktop:desktop-jvm", + "developers": [ + { + "name": "Compose Multiplatform Team" + } + ], + "artifactVersion": "1.7.0-rc01", + "description": "Compose Desktop", + "name": "Compose Desktop", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.compose.foundation:foundation-desktop", + "developers": [ + { + "name": "Compose Multiplatform Team" + } + ], + "artifactVersion": "1.7.0-rc01", + "description": "Higher level abstractions of the Compose UI primitives. This library is design system agnostic, providing the high-level building blocks for both application and design-system developers", + "name": "Compose Foundation", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.compose.foundation:foundation-layout-desktop", + "developers": [ + { + "name": "Compose Multiplatform Team" + } + ], + "artifactVersion": "1.7.0-rc01", + "description": "Compose layout implementations", + "name": "Compose Layouts", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.compose.material3.adaptive:adaptive-desktop", + "developers": [ + { + "name": "Compose Multiplatform Team" + } + ], + "artifactVersion": "1.0.0-rc01", + "description": "Compose Material Design Adaptive Library", + "name": "Material Adaptive", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.compose.material3:material3-adaptive-navigation-suite-desktop", + "developers": [ + { + "name": "Compose Multiplatform Team" + } + ], + "artifactVersion": "1.7.0-rc01", + "description": "Compose Material Design Adaptive Navigation Suite Library", + "name": "Material Adaptive Navigation Suite", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.compose.material3:material3-desktop", + "developers": [ + { + "name": "Compose Multiplatform Team" + } + ], + "artifactVersion": "1.7.0-rc01", + "description": "Compose Material You Design Components library", + "name": "Compose Material3 Components", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.compose.material:material-desktop", + "developers": [ + { + "name": "Compose Multiplatform Team" + } + ], + "artifactVersion": "1.7.0-rc01", + "description": "Compose Material Design Components library", + "name": "Compose Material Components", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.compose.material:material-icons-core-desktop", + "developers": [ + { + "name": "Compose Multiplatform Team" + } + ], + "artifactVersion": "1.7.0-rc01", + "description": "Compose Material Design core icons. This module contains the most commonly used set of Material icons.", + "name": "Compose Material Icons Core", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.compose.material:material-ripple-desktop", + "developers": [ + { + "name": "Compose Multiplatform Team" + } + ], + "artifactVersion": "1.7.0-rc01", + "description": "Material ripple used to build interactive components", + "name": "Compose Material Ripple", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.compose.runtime:runtime-desktop", + "developers": [ + { + "name": "Compose Multiplatform Team" + } + ], + "artifactVersion": "1.7.0-rc01", + "description": "Tree composition support for code generated by the Compose compiler plugin and corresponding public API", + "name": "Compose Runtime", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.compose.runtime:runtime-saveable-desktop", + "developers": [ + { + "name": "Compose Multiplatform Team" + } + ], + "artifactVersion": "1.7.0-rc01", + "description": "Compose components that allow saving and restoring the local ui state", + "name": "Compose Saveable", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.compose.ui:ui-desktop", + "developers": [ + { + "name": "Compose Multiplatform Team" + } + ], + "artifactVersion": "1.7.0-rc01", + "description": "Compose UI primitives. This library contains the primitives that form the Compose UI Toolkit, such as drawing, measurement and layout.", + "name": "Compose UI primitives", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.compose.ui:ui-geometry-desktop", + "developers": [ + { + "name": "Compose Multiplatform Team" + } + ], + "artifactVersion": "1.7.0-rc01", + "description": "Compose classes related to dimensions without units", + "name": "Compose Geometry", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.compose.ui:ui-graphics-desktop", + "developers": [ + { + "name": "Compose Multiplatform Team" + } + ], + "artifactVersion": "1.7.0-rc01", + "description": "Compose graphics", + "name": "Compose Graphics", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.compose.ui:ui-text-desktop", + "developers": [ + { + "name": "Compose Multiplatform Team" + } + ], + "artifactVersion": "1.7.0-rc01", + "description": "Compose Text primitives and utilities", + "name": "Compose UI Text", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.compose.ui:ui-tooling-preview-desktop", + "developers": [ + { + "name": "Compose Multiplatform Team" + } + ], + "artifactVersion": "1.7.0-rc01", + "description": "Compose tooling library API. This library provides the API required to declare @Preview composables in user apps.", + "name": "Compose UI Preview Tooling", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.compose.ui:ui-unit-desktop", + "developers": [ + { + "name": "Compose Multiplatform Team" + } + ], + "artifactVersion": "1.7.0-rc01", + "description": "Compose classes for simple units", + "name": "Compose Unit", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.compose.ui:ui-util-desktop", + "developers": [ + { + "name": "Compose Multiplatform Team" + } + ], + "artifactVersion": "1.7.0-rc01", + "description": "Internal Compose utilities used by other modules", + "name": "Compose Util", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.kotlin:kotlin-reflect", + "developers": [ + { + "name": "Kotlin Team" + } + ], + "artifactVersion": "1.8.22", + "description": "Kotlin Full Reflection Library", + "name": "Kotlin Reflect", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.kotlin:kotlin-stdlib", + "developers": [ + { + "name": "Kotlin Team" + } + ], + "artifactVersion": "2.0.20", + "description": "Kotlin Standard Library", + "name": "Kotlin Stdlib", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.kotlin:kotlin-stdlib-jdk7", + "developers": [ + { + "name": "Kotlin Team" + } + ], + "artifactVersion": "1.9.24", + "description": "Kotlin Standard Library JDK 7 extension", + "name": "Kotlin Stdlib Jdk7", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.kotlin:kotlin-stdlib-jdk8", + "developers": [ + { + "name": "Kotlin Team" + } + ], + "artifactVersion": "1.9.24", + "description": "Kotlin Standard Library JDK 8 extension", + "name": "Kotlin Stdlib Jdk8", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.kotlinx:atomicfu-jvm", + "developers": [ + { + "name": "JetBrains Team" + } + ], + "artifactVersion": "0.23.2", + "description": "AtomicFU utilities", + "name": "atomicfu", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.kotlinx:kotlinx-collections-immutable-jvm", + "developers": [ + { + "name": "JetBrains Team" + } + ], + "artifactVersion": "0.3.7", + "description": "Kotlin Immutable Collections multiplatform library", + "name": "kotlinx-collections-immutable", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.kotlinx:kotlinx-coroutines-bom", + "developers": [ + { + "name": "JetBrains Team" + } + ], + "artifactVersion": "1.9.0", + "description": "Coroutines support libraries for Kotlin", + "name": "kotlinx-coroutines-bom", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm", + "developers": [ + { + "name": "JetBrains Team" + } + ], + "artifactVersion": "1.9.0", + "description": "Coroutines support libraries for Kotlin", + "name": "kotlinx-coroutines-core", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.kotlinx:kotlinx-coroutines-jdk8", + "developers": [ + { + "name": "JetBrains Team" + } + ], + "artifactVersion": "1.9.0", + "description": "Coroutines support libraries for Kotlin", + "name": "kotlinx-coroutines-jdk8", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.kotlinx:kotlinx-coroutines-slf4j", + "developers": [ + { + "name": "JetBrains Team" + } + ], + "artifactVersion": "1.9.0", + "description": "Coroutines support libraries for Kotlin", + "name": "kotlinx-coroutines-slf4j", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.kotlinx:kotlinx-coroutines-swing", + "developers": [ + { + "name": "JetBrains Team" + } + ], + "artifactVersion": "1.9.0", + "description": "Coroutines support libraries for Kotlin", + "name": "kotlinx-coroutines-swing", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.kotlinx:kotlinx-datetime-jvm", + "developers": [ + { + "name": "JetBrains Team" + } + ], + "artifactVersion": "0.6.1", + "description": "Kotlin Datetime Library", + "name": "kotlinx-datetime", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.kotlinx:kotlinx-serialization-bom", + "developers": [ + { + "name": "JetBrains Team" + } + ], + "artifactVersion": "1.7.1", + "description": "Kotlin multiplatform serialization runtime library", + "name": "kotlinx-serialization-bom", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.kotlinx:kotlinx-serialization-core-jvm", + "developers": [ + { + "name": "JetBrains Team" + } + ], + "artifactVersion": "1.7.1", + "description": "Kotlin multiplatform serialization runtime library", + "name": "kotlinx-serialization-core", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.kotlinx:kotlinx-serialization-json-jvm", + "developers": [ + { + "name": "JetBrains Team" + } + ], + "artifactVersion": "1.7.1", + "description": "Kotlin multiplatform serialization runtime library", + "name": "kotlinx-serialization-json", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.skiko:skiko-awt", + "developers": [ + { + "name": "Compose Multiplatform Team" + } + ], + "artifactVersion": "0.8.15", + "description": "Kotlin Skia bindings", + "name": "Skiko Awt", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.skiko:skiko-awt-runtime-macos-arm64", + "developers": [ + { + "name": "Compose Multiplatform Team" + } + ], + "artifactVersion": "0.8.15", + "description": "Kotlin Skia bindings", + "name": "Skiko JVM Runtime for MacOS Arm64", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains:annotations", + "developers": [ + { + "name": "JetBrains Team" + } + ], + "artifactVersion": "23.0.0", + "description": "A set of annotations used for code inspection support and code documentation.", + "name": "JetBrains Java Annotations", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.slf4j:slf4j-api", + "developers": [ + + ], + "artifactVersion": "1.7.36", + "description": "The slf4j API", + "name": "SLF4J API Module", + "licenses": [ + "MIT" + ], + "organization": { + "name": "QOS.ch" + } + } + ], + "licenses": { + "Apache-2.0": { + "content": "Apache License\nVersion 2.0, January 2004\nhttp://www.apache.org/licenses/\n\nTERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n1. Definitions.\n\n\"License\" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.\n\n\"Licensor\" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.\n\n\"Legal Entity\" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, \"control\" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.\n\n\"You\" (or \"Your\") shall mean an individual or Legal Entity exercising permissions granted by this License.\n\n\"Source\" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.\n\n\"Object\" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.\n\n\"Work\" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).\n\n\"Derivative Works\" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.\n\n\"Contribution\" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, \"submitted\" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as \"Not a Contribution.\"\n\n\"Contributor\" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.\n\n2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.\n\n3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.\n\n4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:\n\n (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License.\n\n You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.\n\n5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.\n\n6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.\n\n7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.\n\n8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.\n\n9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.\n\nEND OF TERMS AND CONDITIONS\n\nAPPENDIX: How to apply the Apache License to your work.\n\nTo apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets \"[]\" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same \"printed page\" as the copyright notice for easier identification within third-party archives.\n\nCopyright [yyyy] [name of copyright owner]\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.", + "hash": "Apache-2.0", + "internalHash": "Apache-2.0", + "url": "https://spdx.org/licenses/Apache-2.0.html", + "spdxId": "Apache-2.0", + "name": "Apache License 2.0" + }, + "MIT": { + "content": "MIT License\n\nCopyright (c) \n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.", + "hash": "MIT", + "internalHash": "MIT", + "url": "https://spdx.org/licenses/MIT.html", + "spdxId": "MIT", + "name": "MIT License" + }, + "asdkl": { + "content": "This is the Android Software Development Kit License Agreement\n
\n1. Introduction\n
\n1.1 The Android Software Development Kit (referred to in the License Agreement as the \"SDK\" and specifically including the Android system files, packaged APIs, and Google APIs add-ons) is licensed to you subject to the terms of the License Agreement. The License Agreement forms a legally binding contract between you and Google in relation to your use of the SDK.\n
\n1.2 \"Android\" means the Android software stack for devices, as made available under the Android Open Source Project, which is located at the following URL: http://source.android.com/, as updated from time to time.\n
\n1.3 A \"compatible implementation\" means any Android device that (i) complies with the Android Compatibility Definition document, which can be found at the Android compatibility website (http://source.android.com/compatibility) and which may be updated from time to time; and (ii) successfully passes the Android Compatibility Test Suite (CTS).\n
\n1.4 \"Google\" means Google LLC, a Delaware corporation with principal place of business at 1600 Amphitheatre Parkway, Mountain View, CA 94043, United States.\n
\n2. Accepting this License Agreement\n
\n2.1 In order to use the SDK, you must first agree to the License Agreement. You may not use the SDK if you do not accept the License Agreement.\n
\n2.2 By clicking to accept, you hereby agree to the terms of the License Agreement.\n
\n2.3 You may not use the SDK and may not accept the License Agreement if you are a person barred from receiving the SDK under the laws of the United States or other countries, including the country in which you are resident or from which you use the SDK.\n
\n2.4 If you are agreeing to be bound by the License Agreement on behalf of your employer or other entity, you represent and warrant that you have full legal authority to bind your employer or such entity to the License Agreement. If you do not have the requisite authority, you may not accept the License Agreement or use the SDK on behalf of your employer or other entity.\n
\n3. SDK License from Google\n
\n3.1 Subject to the terms of the License Agreement, Google grants you a limited, worldwide, royalty-free, non-assignable, non-exclusive, and non-sublicensable license to use the SDK solely to develop applications for compatible implementations of Android.\n
\n3.2 You may not use this SDK to develop applications for other platforms (including non-compatible implementations of Android) or to develop another SDK. You are of course free to develop applications for other platforms, including non-compatible implementations of Android, provided that this SDK is not used for that purpose.\n
\n3.3 You agree that Google or third parties own all legal right, title and interest in and to the SDK, including any Intellectual Property Rights that subsist in the SDK. \"Intellectual Property Rights\" means any and all rights under patent law, copyright law, trade secret law, trademark law, and any and all other proprietary rights. Google reserves all rights not expressly granted to you.\n
\n3.4 You may not use the SDK for any purpose not expressly permitted by the License Agreement. Except to the extent required by applicable third party licenses, you may not copy (except for backup purposes), modify, adapt, redistribute, decompile, reverse engineer, disassemble, or create derivative works of the SDK or any part of the SDK.\n
\n3.5 Use, reproduction and distribution of components of the SDK licensed under an open source software license are governed solely by the terms of that open source software license and not the License Agreement.\n
\n3.6 You agree that the form and nature of the SDK that Google provides may change without prior notice to you and that future versions of the SDK may be incompatible with applications developed on previous versions of the SDK. You agree that Google may stop (permanently or temporarily) providing the SDK (or any features within the SDK) to you or to users generally at Google's sole discretion, without prior notice to you.\n
\n3.7 Nothing in the License Agreement gives you a right to use any of Google's trade names, trademarks, service marks, logos, domain names, or other distinctive brand features.\n
\n3.8 You agree that you will not remove, obscure, or alter any proprietary rights notices (including copyright and trademark notices) that may be affixed to or contained within the SDK.\n
\n4. Use of the SDK by You\n
\n4.1 Google agrees that it obtains no right, title or interest from you (or your licensors) under the License Agreement in or to any software applications that you develop using the SDK, including any intellectual property rights that subsist in those applications.\n
\n4.2 You agree to use the SDK and write applications only for purposes that are permitted by (a) the License Agreement and (b) any applicable law, regulation or generally accepted practices or guidelines in the relevant jurisdictions (including any laws regarding the export of data or software to and from the United States or other relevant countries).\n
\n4.3 You agree that if you use the SDK to develop applications for general public users, you will protect the privacy and legal rights of those users. If the users provide you with user names, passwords, or other login information or personal information, you must make the users aware that the information will be available to your application, and you must provide legally adequate privacy notice and protection for those users. If your application stores personal or sensitive information provided by users, it must do so securely. If the user provides your application with Google Account information, your application may only use that information to access the user's Google Account when, and for the limited purposes for which, the user has given you permission to do so.\n
\n4.4 You agree that you will not engage in any activity with the SDK, including the development or distribution of an application, that interferes with, disrupts, damages, or accesses in an unauthorized manner the servers, networks, or other properties or services of any third party including, but not limited to, Google or any mobile communications carrier.\n
\n4.5 You agree that you are solely responsible for (and that Google has no responsibility to you or to any third party for) any data, content, or resources that you create, transmit or display through Android and/or applications for Android, and for the consequences of your actions (including any loss or damage which Google may suffer) by doing so.\n
\n4.6 You agree that you are solely responsible for (and that Google has no responsibility to you or to any third party for) any breach of your obligations under the License Agreement, any applicable third party contract or Terms of Service, or any applicable law or regulation, and for the consequences (including any loss or damage which Google or any third party may suffer) of any such breach.\n
\n5. Your Developer Credentials\n
\n5.1 You agree that you are responsible for maintaining the confidentiality of any developer credentials that may be issued to you by Google or which you may choose yourself and that you will be solely responsible for all applications that are developed under your developer credentials.\n
\n6. Privacy and Information\n
\n6.1 In order to continually innovate and improve the SDK, Google may collect certain usage statistics from the software including but not limited to a unique identifier, associated IP address, version number of the software, and information on which tools and/or services in the SDK are being used and how they are being used. Before any of this information is collected, the SDK will notify you and seek your consent. If you withhold consent, the information will not be collected.\n
\n6.2 The data collected is examined in the aggregate to improve the SDK and is maintained in accordance with Google's Privacy Policy.\n
\n7. Third Party Applications\n
\n7.1 If you use the SDK to run applications developed by a third party or that access data, content or resources provided by a third party, you agree that Google is not responsible for those applications, data, content, or resources. You understand that all data, content or resources which you may access through such third party applications are the sole responsibility of the person from which they originated and that Google is not liable for any loss or damage that you may experience as a result of the use or access of any of those third party applications, data, content, or resources.\n
\n7.2 You should be aware the data, content, and resources presented to you through such a third party application may be protected by intellectual property rights which are owned by the providers (or by other persons or companies on their behalf). You may not modify, rent, lease, loan, sell, distribute or create derivative works based on these data, content, or resources (either in whole or in part) unless you have been specifically given permission to do so by the relevant owners.\n
\n7.3 You acknowledge that your use of such third party applications, data, content, or resources may be subject to separate terms between you and the relevant third party. In that case, the License Agreement does not affect your legal relationship with these third parties.\n
\n8. Using Android APIs\n
\n8.1 Google Data APIs\n
\n8.1.1 If you use any API to retrieve data from Google, you acknowledge that the data may be protected by intellectual property rights which are owned by Google or those parties that provide the data (or by other persons or companies on their behalf). Your use of any such API may be subject to additional Terms of Service. You may not modify, rent, lease, loan, sell, distribute or create derivative works based on this data (either in whole or in part) unless allowed by the relevant Terms of Service.\n
\n8.1.2 If you use any API to retrieve a user's data from Google, you acknowledge and agree that you shall retrieve data only with the user's explicit consent and only when, and for the limited purposes for which, the user has given you permission to do so. If you use the Android Recognition Service API, documented at the following URL: https://developer.android.com/reference/android/speech/RecognitionService, as updated from time to time, you acknowledge that the use of the API is subject to the Data Processing Addendum for Products where Google is a Data Processor, which is located at the following URL: https://privacy.google.com/businesses/gdprprocessorterms/, as updated from time to time. By clicking to accept, you hereby agree to the terms of the Data Processing Addendum for Products where Google is a Data Processor.\n
\n9. Terminating this License Agreement\n
\n9.1 The License Agreement will continue to apply until terminated by either you or Google as set out below.\n
\n9.2 If you want to terminate the License Agreement, you may do so by ceasing your use of the SDK and any relevant developer credentials.\n
\n9.3 Google may at any time, terminate the License Agreement with you if:
\n(A) you have breached any provision of the License Agreement; or
\n(B) Google is required to do so by law; or
\n(C) the partner with whom Google offered certain parts of SDK (such as APIs) to you has terminated its relationship with Google or ceased to offer certain parts of the SDK to you; or
\n(D) Google decides to no longer provide the SDK or certain parts of the SDK to users in the country in which you are resident or from which you use the service, or the provision of the SDK or certain SDK services to you by Google is, in Google's sole discretion, no longer commercially viable.
\n
\n9.4 When the License Agreement comes to an end, all of the legal rights, obligations and liabilities that you and Google have benefited from, been subject to (or which have accrued over time whilst the License Agreement has been in force) or which are expressed to continue indefinitely, shall be unaffected by this cessation, and the provisions of paragraph 14.7 shall continue to apply to such rights, obligations and liabilities indefinitely.\n
\n10. DISCLAIMER OF WARRANTIES\n
\n10.1 YOU EXPRESSLY UNDERSTAND AND AGREE THAT YOUR USE OF THE SDK IS AT YOUR SOLE RISK AND THAT THE SDK IS PROVIDED \"AS IS\" AND \"AS AVAILABLE\" WITHOUT WARRANTY OF ANY KIND FROM GOOGLE.\n
\n10.2 YOUR USE OF THE SDK AND ANY MATERIAL DOWNLOADED OR OTHERWISE OBTAINED THROUGH THE USE OF THE SDK IS AT YOUR OWN DISCRETION AND RISK AND YOU ARE SOLELY RESPONSIBLE FOR ANY DAMAGE TO YOUR COMPUTER SYSTEM OR OTHER DEVICE OR LOSS OF DATA THAT RESULTS FROM SUCH USE.\n
\n10.3 GOOGLE FURTHER EXPRESSLY DISCLAIMS ALL WARRANTIES AND CONDITIONS OF ANY KIND, WHETHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO THE IMPLIED WARRANTIES AND CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n
\n11. LIMITATION OF LIABILITY\n
\n11.1 YOU EXPRESSLY UNDERSTAND AND AGREE THAT GOOGLE, ITS SUBSIDIARIES AND AFFILIATES, AND ITS LICENSORS SHALL NOT BE LIABLE TO YOU UNDER ANY THEORY OF LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, CONSEQUENTIAL OR EXEMPLARY DAMAGES THAT MAY BE INCURRED BY YOU, INCLUDING ANY LOSS OF DATA, WHETHER OR NOT GOOGLE OR ITS REPRESENTATIVES HAVE BEEN ADVISED OF OR SHOULD HAVE BEEN AWARE OF THE POSSIBILITY OF ANY SUCH LOSSES ARISING.\n
\n12. Indemnification\n
\n12.1 To the maximum extent permitted by law, you agree to defend, indemnify and hold harmless Google, its affiliates and their respective directors, officers, employees and agents from and against any and all claims, actions, suits or proceedings, as well as any and all losses, liabilities, damages, costs and expenses (including reasonable attorneys fees) arising out of or accruing from (a) your use of the SDK, (b) any application you develop on the SDK that infringes any copyright, trademark, trade secret, trade dress, patent or other intellectual property right of any person or defames any person or violates their rights of publicity or privacy, and (c) any non-compliance by you with the License Agreement.\n
\n13. Changes to the License Agreement\n
\n13.1 Google may make changes to the License Agreement as it distributes new versions of the SDK. When these changes are made, Google will make a new version of the License Agreement available on the website where the SDK is made available.\n
\n14. General Legal Terms\n
\n14.1 The License Agreement constitutes the whole legal agreement between you and Google and governs your use of the SDK (excluding any services which Google may provide to you under a separate written agreement), and completely replaces any prior agreements between you and Google in relation to the SDK.\n
\n14.2 You agree that if Google does not exercise or enforce any legal right or remedy which is contained in the License Agreement (or which Google has the benefit of under any applicable law), this will not be taken to be a formal waiver of Google's rights and that those rights or remedies will still be available to Google.\n
\n14.3 If any court of law, having the jurisdiction to decide on this matter, rules that any provision of the License Agreement is invalid, then that provision will be removed from the License Agreement without affecting the rest of the License Agreement. The remaining provisions of the License Agreement will continue to be valid and enforceable.\n
\n14.4 You acknowledge and agree that each member of the group of companies of which Google is the parent shall be third party beneficiaries to the License Agreement and that such other companies shall be entitled to directly enforce, and rely upon, any provision of the License Agreement that confers a benefit on (or rights in favor of) them. Other than this, no other person or company shall be third party beneficiaries to the License Agreement.\n
\n14.5 EXPORT RESTRICTIONS. THE SDK IS SUBJECT TO UNITED STATES EXPORT LAWS AND REGULATIONS. YOU MUST COMPLY WITH ALL DOMESTIC AND INTERNATIONAL EXPORT LAWS AND REGULATIONS THAT APPLY TO THE SDK. THESE LAWS INCLUDE RESTRICTIONS ON DESTINATIONS, END USERS AND END USE.\n
\n14.6 The rights granted in the License Agreement may not be assigned or transferred by either you or Google without the prior written approval of the other party. Neither you nor Google shall be permitted to delegate their responsibilities or obligations under the License Agreement without the prior written approval of the other party.\n
\n14.7 The License Agreement, and your relationship with Google under the License Agreement, shall be governed by the laws of the State of California without regard to its conflict of laws provisions. You and Google agree to submit to the exclusive jurisdiction of the courts located within the county of Santa Clara, California to resolve any legal matter arising from the License Agreement. Notwithstanding this, you agree that Google shall still be allowed to apply for injunctive remedies (or an equivalent type of urgent legal relief) in any jurisdiction.", + "hash": "asdkl", + "internalHash": "asdkl", + "url": "https://developer.android.com/studio/terms.html", + "name": "Android Software Development Kit License Agreement" + } + } +} \ No newline at end of file diff --git a/tasks-app-shared/build.gradle.kts b/tasks-app-shared/build.gradle.kts index 3646de27..0b2e37a2 100644 --- a/tasks-app-shared/build.gradle.kts +++ b/tasks-app-shared/build.gradle.kts @@ -81,6 +81,8 @@ kotlin { implementation(libs.koin.compose) implementation(libs.koin.compose.viewmodel) + implementation(libs.about.libraries.core) + implementation(project(":tasks-core")) implementation(project(":lucide-icons")) From 5f8915b6079fcd0cd1388dfb9e53eb4aaddd12c2 Mon Sep 17 00:00:00 2001 From: Olivier Patry Date: Wed, 2 Oct 2024 22:39:48 +0200 Subject: [PATCH 4/7] Notify stale credits when building desktop & android apps in PR --- .github/workflows/build.yml | 17 +++++++++++- _ci/generate_github_comment_stale_credits.sh | 27 ++++++++++++++++++++ 2 files changed, 43 insertions(+), 1 deletion(-) create mode 100755 _ci/generate_github_comment_stale_credits.sh diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3ed68675..084b4a1d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -41,8 +41,23 @@ jobs: PLAYSTORE_SECRET_PASSPHRASE: ${{ secrets.PLAYSTORE_SECRET_PASSPHRASE }} run: ./_ci/decrypt_secrets.sh + - name: ©️ Generate credits for ':tasks-app-desktop' + run: | + ./gradlew --no-daemon :tasks-app-desktop:exportLibraryDefinitions -PaboutLibraries.exportPath=src/main/resources + stale_credits=$(git diff tasks-app-desktop/src/main/resources/licenses_desktop.json) + # TODO if/once made reliable, would be nice to publish a PR comment to state about the status + if [ -n "${stale_credits}" ]; then ./_ci/generate_github_comment_stale_credits.sh ":tasks-app-desktop" >> "${GITHUB_STEP_SUMMARY}"; fi + - name: 🔨 Build Desktop App 🖥️ - run: ./gradlew --no-daemon :tasks-app-desktop:assemble + run: | + ./gradlew --no-daemon :tasks-app-desktop:assemble + + - name: ©️ Generate credits for ':tasks-app-android' + run: | + ./gradlew --no-daemon :tasks-app-android:exportLibraryDefinitions -PaboutLibraries.exportPath=src/main/assets + stale_credits=$(git diff tasks-app-android/src/main/assets/licenses_android.json) + # TODO if/once made reliable, would be nice to publish a PR comment to state about the status + if [ -n "${stale_credits}" ]; then ./_ci/generate_github_comment_stale_credits.sh ":tasks-app-android" >> "${GITHUB_STEP_SUMMARY}"; fi - name: 🔨 Build Android App 📱 env: diff --git a/_ci/generate_github_comment_stale_credits.sh b/_ci/generate_github_comment_stale_credits.sh new file mode 100755 index 00000000..db255d1f --- /dev/null +++ b/_ci/generate_github_comment_stale_credits.sh @@ -0,0 +1,27 @@ +#!/usr/bin/env bash + +set -euo pipefail + +case "$1" in + ":tasks-app-android") + diff=$(git diff tasks-app-android/src/main/assets/licenses_android.json) + update_cmd="./gradlew :tasks-app-android:exportLibraryDefinitions -PaboutLibraries.exportPath=src/main/assets" + ;; + ":tasks-app-desktop") + diff=$(git diff tasks-app-desktop/src/main/resources/licenses_desktop.json) + update_cmd="./gradlew :tasks-app-desktop:exportLibraryDefinitions -PaboutLibraries.exportPath=src/main/resources" + ;; + *) + echo "Unsupported app module" + exit 1 + ;; +esac + +cat << __END +## ©️ Stale credits for \`$1\` + +\`\`\`diff +${diff} +\`\`\` +Run \`${update_cmd}\` and commit resulting diff to fix the issue. +__END \ No newline at end of file From 80c93d3a7e8c04558be60f44a9208ecde3900859 Mon Sep 17 00:00:00 2001 From: Olivier Patry Date: Thu, 3 Oct 2024 13:35:44 +0200 Subject: [PATCH 5/7] Run licenses diff on maOS to stick to what is checked out in SCM --- .github/workflows/build.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 084b4a1d..338b89de 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -16,7 +16,8 @@ on: jobs: build: - runs-on: ubuntu-latest + # run on macOS to use Skiko mac for credits checks + runs-on: macos-latest permissions: contents: read checks: write From 59e58b067c940471dfb3295426107ac49f3377e0 Mon Sep 17 00:00:00 2001 From: Olivier Patry Date: Wed, 2 Oct 2024 22:43:08 +0200 Subject: [PATCH 6/7] Add AboutScreen to display Privacy Policy, Github, Website & Credits --- .../java/net/opatry/tasks/app/MainActivity.kt | 10 +- .../opatry/tasks/app/util/AssetManagerExt.kt | 17 +- tasks-app-desktop/src/main/kotlin/mainApp.kt | 16 +- .../tasks/app/ui/screen/aboutScreenAndroid.kt | 64 ++++++ .../composeResources/values/strings.xml | 1 + .../net/opatry/tasks/app/ui/TasksApp.kt | 32 ++- .../opatry/tasks/app/ui/screen/aboutScreen.kt | 165 +++++++++++++++ .../tasks/app/ui/screen/creditsScreen.kt | 195 ++++++++++++++++++ .../tasks/app/ui/screen/aboutScreenJvm.kt | 57 +++++ 9 files changed, 524 insertions(+), 33 deletions(-) rename tasks-app-shared/src/commonMain/kotlin/net/opatry/tasks/app/ui/screen/settingsScreen.kt => tasks-app-android/src/main/java/net/opatry/tasks/app/util/AssetManagerExt.kt (75%) create mode 100644 tasks-app-shared/src/androidMain/kotlin/net/opatry/tasks/app/ui/screen/aboutScreenAndroid.kt create mode 100644 tasks-app-shared/src/commonMain/kotlin/net/opatry/tasks/app/ui/screen/aboutScreen.kt create mode 100644 tasks-app-shared/src/commonMain/kotlin/net/opatry/tasks/app/ui/screen/creditsScreen.kt create mode 100644 tasks-app-shared/src/jvmMain/kotlin/net/opatry/tasks/app/ui/screen/aboutScreenJvm.kt diff --git a/tasks-app-android/src/main/java/net/opatry/tasks/app/MainActivity.kt b/tasks-app-android/src/main/java/net/opatry/tasks/app/MainActivity.kt index 26dae0d6..3e5e8b21 100644 --- a/tasks-app-android/src/main/java/net/opatry/tasks/app/MainActivity.kt +++ b/tasks-app-android/src/main/java/net/opatry/tasks/app/MainActivity.kt @@ -34,8 +34,10 @@ import net.opatry.tasks.app.ui.TasksApp import net.opatry.tasks.app.ui.UserState import net.opatry.tasks.app.ui.UserViewModel import net.opatry.tasks.app.ui.component.LoadingPane +import net.opatry.tasks.app.ui.screen.AboutApp import net.opatry.tasks.app.ui.screen.AuthorizationScreen import net.opatry.tasks.app.ui.theme.TasksfolioTheme +import net.opatry.tasks.app.util.readText import org.koin.compose.viewmodel.koinViewModel @@ -60,8 +62,14 @@ class MainActivity : AppCompatActivity() { is UserState.Unsigned, is UserState.SignedIn -> { + val aboutApp = AboutApp( + name = getString(R.string.app_name), + version = "${BuildConfig.VERSION_NAME}.${BuildConfig.VERSION_CODE}" + ) { + assets.readText("licenses_android.json") + } val tasksViewModel = koinViewModel() - TasksApp(userViewModel, tasksViewModel) + TasksApp(aboutApp, userViewModel, tasksViewModel) } is UserState.Newcomer -> AuthorizationScreen( diff --git a/tasks-app-shared/src/commonMain/kotlin/net/opatry/tasks/app/ui/screen/settingsScreen.kt b/tasks-app-android/src/main/java/net/opatry/tasks/app/util/AssetManagerExt.kt similarity index 75% rename from tasks-app-shared/src/commonMain/kotlin/net/opatry/tasks/app/ui/screen/settingsScreen.kt rename to tasks-app-android/src/main/java/net/opatry/tasks/app/util/AssetManagerExt.kt index 215564d5..af890218 100644 --- a/tasks-app-shared/src/commonMain/kotlin/net/opatry/tasks/app/ui/screen/settingsScreen.kt +++ b/tasks-app-android/src/main/java/net/opatry/tasks/app/util/AssetManagerExt.kt @@ -20,16 +20,13 @@ * OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ -package net.opatry.tasks.app.ui.screen +package net.opatry.tasks.app.util -import androidx.compose.material3.Text -import androidx.compose.runtime.Composable -import net.opatry.tasks.resources.Res -import net.opatry.tasks.resources.settings_screen_tbd -import org.jetbrains.compose.resources.stringResource +import android.content.res.AssetManager +import java.io.BufferedReader - -@Composable -fun SettingsScreen() { - Text(stringResource(Res.string.settings_screen_tbd)) +fun AssetManager.readText(assetPath: String): String { + return open(assetPath) + .bufferedReader() + .use(BufferedReader::readText) } diff --git a/tasks-app-desktop/src/main/kotlin/mainApp.kt b/tasks-app-desktop/src/main/kotlin/mainApp.kt index 8f6f68fb..85c4d157 100644 --- a/tasks-app-desktop/src/main/kotlin/mainApp.kt +++ b/tasks-app-desktop/src/main/kotlin/mainApp.kt @@ -45,6 +45,7 @@ import net.opatry.tasks.app.ui.TasksApp import net.opatry.tasks.app.ui.UserState import net.opatry.tasks.app.ui.UserViewModel import net.opatry.tasks.app.ui.component.LoadingPane +import net.opatry.tasks.app.ui.screen.AboutApp import net.opatry.tasks.app.ui.screen.AuthorizationScreen import net.opatry.tasks.app.ui.theme.TasksfolioTheme import org.koin.compose.KoinApplication @@ -55,9 +56,14 @@ import javax.swing.UIManager private const val GCP_CLIENT_ID = "191682949161-esokhlfh7uugqptqnu3su9vgqmvltv95.apps.googleusercontent.com" +object MainApp + fun main() { UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName()) + val appName = "Taskfolio" + val fullVersion = System.getProperty("app.version.full") ?: "0.0.0.0" + val versionLabel = System.getProperty("app.version")?.let { " v$it" } ?: "" application { val screenSize by remember { mutableStateOf(Toolkit.getDefaultToolkit().screenSize) @@ -73,7 +79,7 @@ fun main() { Window( onCloseRequest = ::exitApplication, state = windowState, - title = "Taskfolio", + title = "$appName$versionLabel", ) { if (window.minimumSize != minSize) window.minimumSize = minSize @@ -120,8 +126,14 @@ fun main() { is UserState.Unsigned, is UserState.SignedIn -> { + val aboutApp = AboutApp( + name = appName, + version = fullVersion + ) { + MainApp::class.java.getResource("/licenses_desktop.json")?.readText() ?: "" + } val tasksViewModel = koinViewModel() - TasksApp(userViewModel, tasksViewModel) + TasksApp(aboutApp, userViewModel, tasksViewModel) } is UserState.Newcomer -> AuthorizationScreen( diff --git a/tasks-app-shared/src/androidMain/kotlin/net/opatry/tasks/app/ui/screen/aboutScreenAndroid.kt b/tasks-app-shared/src/androidMain/kotlin/net/opatry/tasks/app/ui/screen/aboutScreenAndroid.kt new file mode 100644 index 00000000..700f4f3f --- /dev/null +++ b/tasks-app-shared/src/androidMain/kotlin/net/opatry/tasks/app/ui/screen/aboutScreenAndroid.kt @@ -0,0 +1,64 @@ +/* + * Copyright (c) 2024 Olivier Patry + * + * Permission is hereby granted, free of charge, to any person obtaining + * a copy of this software and associated documentation files (the "Software"), + * to deal in the Software without restriction, including without limitation + * the rights to use, copy, modify, merge, publish, distribute, sublicense, + * and/or sell copies of the Software, and to permit persons to whom the Software + * is furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES + * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE + * OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ + +package net.opatry.tasks.app.ui.screen + +import androidx.activity.compose.BackHandler +import androidx.compose.foundation.layout.Box +import androidx.compose.foundation.layout.padding +import androidx.compose.material3.Scaffold +import androidx.compose.runtime.Composable +import androidx.compose.runtime.getValue +import androidx.compose.runtime.mutableStateOf +import androidx.compose.runtime.remember +import androidx.compose.runtime.setValue +import androidx.compose.ui.Modifier + + +@Composable +actual fun AboutScreen(aboutApp: AboutApp) { + var currentDestination by remember { mutableStateOf(AboutScreenDestination.About) } + + BackHandler(currentDestination != AboutScreenDestination.About) { + // TODO doesn't support deep navigation for now, would need a real "navigator.navigateBack()" if needed + // kept simple for now, just handle Android native back to leave Credits screen + currentDestination = AboutScreenDestination.About + } + + Scaffold(topBar = { + when (currentDestination) { + AboutScreenDestination.Credits -> CreditsScreenTopAppBar { + currentDestination = AboutScreenDestination.About + } + AboutScreenDestination.About -> AboutScreenTopAppBar(aboutApp.name, aboutApp.version) + } + }) { innerPadding -> + Box(Modifier.padding(innerPadding)) { + when (currentDestination) { + AboutScreenDestination.About -> AboutScreenContent(aboutApp) { destination -> + currentDestination = destination + } + AboutScreenDestination.Credits -> CreditsScreenContent(aboutApp.aboutLibrariesJsonProvider) + } + } + } +} diff --git a/tasks-app-shared/src/commonMain/composeResources/values/strings.xml b/tasks-app-shared/src/commonMain/composeResources/values/strings.xml index f5660916..12253fa4 100644 --- a/tasks-app-shared/src/commonMain/composeResources/values/strings.xml +++ b/tasks-app-shared/src/commonMain/composeResources/values/strings.xml @@ -27,6 +27,7 @@ Calendar Search Settings + About You need to give the authorization to access your Google Tasks. Skip diff --git a/tasks-app-shared/src/commonMain/kotlin/net/opatry/tasks/app/ui/TasksApp.kt b/tasks-app-shared/src/commonMain/kotlin/net/opatry/tasks/app/ui/TasksApp.kt index 20679d1e..72fdc222 100644 --- a/tasks-app-shared/src/commonMain/kotlin/net/opatry/tasks/app/ui/TasksApp.kt +++ b/tasks-app-shared/src/commonMain/kotlin/net/opatry/tasks/app/ui/TasksApp.kt @@ -22,12 +22,11 @@ package net.opatry.tasks.app.ui -import AlignJustify import Calendar +import Info import ListTodo import LucideIcons import Search -import Settings import androidx.compose.foundation.layout.Column import androidx.compose.foundation.layout.Row import androidx.compose.foundation.layout.padding @@ -53,12 +52,14 @@ import androidx.compose.ui.unit.dp import net.opatry.tasks.app.ui.component.EditTextDialog import net.opatry.tasks.app.ui.component.MissingScreen import net.opatry.tasks.app.ui.component.ProfileIcon +import net.opatry.tasks.app.ui.screen.AboutApp +import net.opatry.tasks.app.ui.screen.AboutScreen import net.opatry.tasks.app.ui.screen.TaskListsMasterDetail import net.opatry.tasks.resources.Res import net.opatry.tasks.resources.app_name +import net.opatry.tasks.resources.navigation_about import net.opatry.tasks.resources.navigation_calendar import net.opatry.tasks.resources.navigation_search -import net.opatry.tasks.resources.navigation_settings import net.opatry.tasks.resources.navigation_tasks import org.jetbrains.compose.resources.StringResource import org.jetbrains.compose.resources.stringResource @@ -69,13 +70,14 @@ enum class AppTasksScreen( val contentDescription: StringResource? = null, ) { Tasks(Res.string.navigation_tasks, LucideIcons.ListTodo), + Calendar(Res.string.navigation_calendar, LucideIcons.Calendar), Search(Res.string.navigation_search, LucideIcons.Search), - Settings(Res.string.navigation_settings, LucideIcons.Settings), + About(Res.string.navigation_about, LucideIcons.Info), } @Composable -fun TasksApp(userViewModel: UserViewModel, tasksViewModel: TaskListsViewModel) { +fun TasksApp(aboutApp: AboutApp, userViewModel: UserViewModel, tasksViewModel: TaskListsViewModel) { var selectedScreen by remember { mutableStateOf(AppTasksScreen.Tasks) } val userState by userViewModel.state.collectAsState(null) val isSigned by remember(userState) { @@ -92,21 +94,11 @@ fun TasksApp(userViewModel: UserViewModel, tasksViewModel: TaskListsViewModel) { var newTaskListDefaultTitle by remember { mutableStateOf("") } var showNewTaskListDialog by remember { mutableStateOf(false) } - NavigationSuiteScaffold(navigationSuiteItems = { - // Only if expanded state - if (false) { - item( - selected = false, - onClick = { }, - enabled = false, - icon = { - Icon(LucideIcons.AlignJustify, null) - }, - alwaysShowLabel = false, - modifier = Modifier.padding(vertical = 12.dp), - ) - } + NavigationSuiteScaffold(modifier = Modifier.padding(top = 16.dp), navigationSuiteItems = { AppTasksScreen.entries.forEach { screen -> + // hide unsupported screens for now + if (screen == AppTasksScreen.Calendar) return@forEach + if (screen == AppTasksScreen.Search) return@forEach item( selected = selectedScreen == screen, onClick = { selectedScreen = screen }, @@ -160,7 +152,7 @@ fun TasksApp(userViewModel: UserViewModel, tasksViewModel: TaskListsViewModel) { AppTasksScreen.Calendar -> MissingScreen(stringResource(AppTasksScreen.Calendar.labelRes), LucideIcons.Calendar) AppTasksScreen.Search -> MissingScreen(stringResource(AppTasksScreen.Search.labelRes), LucideIcons.Search) - AppTasksScreen.Settings -> MissingScreen(stringResource(AppTasksScreen.Settings.labelRes), LucideIcons.Settings) + AppTasksScreen.About -> AboutScreen(aboutApp) } } } diff --git a/tasks-app-shared/src/commonMain/kotlin/net/opatry/tasks/app/ui/screen/aboutScreen.kt b/tasks-app-shared/src/commonMain/kotlin/net/opatry/tasks/app/ui/screen/aboutScreen.kt new file mode 100644 index 00000000..f47ea20a --- /dev/null +++ b/tasks-app-shared/src/commonMain/kotlin/net/opatry/tasks/app/ui/screen/aboutScreen.kt @@ -0,0 +1,165 @@ +/* + * Copyright (c) 2024 Olivier Patry + * + * Permission is hereby granted, free of charge, to any person obtaining + * a copy of this software and associated documentation files (the "Software"), + * to deal in the Software without restriction, including without limitation + * the rights to use, copy, modify, merge, publish, distribute, sublicense, + * and/or sell copies of the Software, and to permit persons to whom the Software + * is furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES + * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE + * OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ + +package net.opatry.tasks.app.ui.screen + +import ChevronRight +import Copyright +import Earth +import Github +import LucideIcons +import ShieldCheck +import SquareArrowOutUpRight +import androidx.compose.foundation.background +import androidx.compose.foundation.clickable +import androidx.compose.foundation.layout.Arrangement +import androidx.compose.foundation.layout.Box +import androidx.compose.foundation.layout.Column +import androidx.compose.foundation.layout.Spacer +import androidx.compose.foundation.layout.aspectRatio +import androidx.compose.foundation.layout.fillMaxHeight +import androidx.compose.foundation.layout.fillMaxSize +import androidx.compose.foundation.layout.padding +import androidx.compose.foundation.layout.size +import androidx.compose.foundation.lazy.LazyColumn +import androidx.compose.material.icons.Icons +import androidx.compose.material.icons.outlined.CheckCircle +import androidx.compose.material3.ExperimentalMaterial3Api +import androidx.compose.material3.Icon +import androidx.compose.material3.ListItem +import androidx.compose.material3.MaterialTheme +import androidx.compose.material3.Text +import androidx.compose.material3.TopAppBar +import androidx.compose.runtime.Composable +import androidx.compose.ui.Alignment +import androidx.compose.ui.Modifier +import androidx.compose.ui.draw.clip +import androidx.compose.ui.graphics.Color +import androidx.compose.ui.graphics.vector.ImageVector +import androidx.compose.ui.platform.LocalUriHandler +import androidx.compose.ui.text.SpanStyle +import androidx.compose.ui.text.buildAnnotatedString +import androidx.compose.ui.text.font.FontFamily +import androidx.compose.ui.text.withStyle +import androidx.compose.ui.unit.dp + + +data class AboutApp( + val name: String, + val version: String, + val aboutLibrariesJsonProvider: suspend () -> String +) + +enum class AboutScreenDestination { + About, + Credits, +} + +@Composable +expect fun AboutScreen(aboutApp: AboutApp) + +@Composable +fun AboutScreenContent(aboutApp: AboutApp, onNavigate: (AboutScreenDestination) -> Unit) { + val uriHandler = LocalUriHandler.current + + LazyColumn { + item { + AboutExternalLink("Website", LucideIcons.Earth) { + uriHandler.openUri("https://opatry.github.io/taskfolio") + } + } + item { + AboutExternalLink("Github", LucideIcons.Github) { + uriHandler.openUri("https://github.com/opatry/taskfolio") + } + } + item { + AboutExternalLink("Privacy Policy", LucideIcons.ShieldCheck) { + uriHandler.openUri("https://opatry.github.io/taskfolio/privacy-policy") + } + } + item { + ListItem( + modifier = Modifier.clickable(onClick = { onNavigate(AboutScreenDestination.Credits) }), + leadingContent = { Icon(LucideIcons.Copyright, null) }, + headlineContent = { Text("Credits") }, + trailingContent = { Icon(LucideIcons.ChevronRight, null) }, + ) + } + } +} + +@OptIn(ExperimentalMaterial3Api::class) +@Composable +internal fun AboutScreenTopAppBar(appName: String, appVersion: String) { + TopAppBar( + title = { + Column(verticalArrangement = Arrangement.spacedBy(4.dp)) { + Text(appName) + Text(buildAnnotatedString { + append("Version ") + withStyle(SpanStyle(fontFamily = FontFamily.Monospace)) { + append(appVersion) + } + }, style = MaterialTheme.typography.labelSmall) + } + }, + navigationIcon = { AppIcon() } + ) +} + +@Composable +private fun AppIcon() { + // TODO app icon in compose res + Box( + Modifier + .padding(8.dp) + .fillMaxHeight() + .aspectRatio(1f) + .clip(MaterialTheme.shapes.medium) + .background(Color(0xFF023232)), + contentAlignment = Alignment.Center + ) { + Icon( + Icons.Outlined.CheckCircle, + null, + Modifier.fillMaxSize(.7f), + tint = Color(0xFF81FFDE) + ) + } +} + +@Composable +private fun AboutExternalLink(label: String, icon: ImageVector? = null, onClick: () -> Unit) { + ListItem( + modifier = Modifier.clickable(onClick = onClick), + leadingContent = { + if (icon != null) { + Icon(icon, null) + } else { + Spacer(Modifier.size(24.dp)) + } + }, + headlineContent = { Text(label) }, + trailingContent = { Icon(LucideIcons.SquareArrowOutUpRight, null) }, + ) +} diff --git a/tasks-app-shared/src/commonMain/kotlin/net/opatry/tasks/app/ui/screen/creditsScreen.kt b/tasks-app-shared/src/commonMain/kotlin/net/opatry/tasks/app/ui/screen/creditsScreen.kt new file mode 100644 index 00000000..75a61fde --- /dev/null +++ b/tasks-app-shared/src/commonMain/kotlin/net/opatry/tasks/app/ui/screen/creditsScreen.kt @@ -0,0 +1,195 @@ +/* + * Copyright (c) 2024 Olivier Patry + * + * Permission is hereby granted, free of charge, to any person obtaining + * a copy of this software and associated documentation files (the "Software"), + * to deal in the Software without restriction, including without limitation + * the rights to use, copy, modify, merge, publish, distribute, sublicense, + * and/or sell copies of the Software, and to permit persons to whom the Software + * is furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES + * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE + * OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ + +package net.opatry.tasks.app.ui.screen + +import ArrowLeft +import LucideIcons +import SquareArrowOutUpRight +import androidx.compose.foundation.ExperimentalFoundationApi +import androidx.compose.foundation.background +import androidx.compose.foundation.layout.Arrangement +import androidx.compose.foundation.layout.Column +import androidx.compose.foundation.layout.ExperimentalLayoutApi +import androidx.compose.foundation.layout.FlowRow +import androidx.compose.foundation.layout.fillMaxWidth +import androidx.compose.foundation.layout.padding +import androidx.compose.foundation.layout.size +import androidx.compose.foundation.lazy.LazyColumn +import androidx.compose.foundation.lazy.items +import androidx.compose.material3.AssistChip +import androidx.compose.material3.ExperimentalMaterial3Api +import androidx.compose.material3.Icon +import androidx.compose.material3.IconButton +import androidx.compose.material3.ListItem +import androidx.compose.material3.MaterialTheme +import androidx.compose.material3.Text +import androidx.compose.material3.TopAppBar +import androidx.compose.runtime.Composable +import androidx.compose.runtime.State +import androidx.compose.runtime.derivedStateOf +import androidx.compose.runtime.getValue +import androidx.compose.runtime.produceState +import androidx.compose.runtime.remember +import androidx.compose.ui.Modifier +import androidx.compose.ui.platform.LocalUriHandler +import androidx.compose.ui.text.font.FontFamily +import androidx.compose.ui.unit.dp +import com.mikepenz.aboutlibraries.Libs +import com.mikepenz.aboutlibraries.entity.Developer +import com.mikepenz.aboutlibraries.entity.Library +import com.mikepenz.aboutlibraries.entity.License +import kotlinx.coroutines.Dispatchers +import kotlinx.coroutines.withContext + +private fun Library.authors(max: Int = 3): String? { + if (developers.size > 1) println("THIS=$uniqueId HAS ${developers.size} DEVELOPERS") + return organization?.name + ?: developers.mapNotNull(Developer::name) + .take(max) + .takeUnless(List<*>::isEmpty) + ?.joinToString(", ") +} + +@Composable +private fun rememberLibraries(block: suspend () -> String): State = produceState(initialValue = null) { + value = withContext(Dispatchers.Default) { + Libs.Builder() + .withJson(block()) + .build() + } +} + +@OptIn(ExperimentalMaterial3Api::class) +@Composable +fun CreditsScreenTopAppBar(onBack: () -> Unit) { + TopAppBar( + title = { + Text("Credits") + }, + navigationIcon = { + IconButton(onClick = onBack) { + Icon(LucideIcons.ArrowLeft, null) + } + } + ) +} + +@OptIn(ExperimentalFoundationApi::class) +@Composable +fun CreditsScreenContent(librariesJsonProvider: suspend () -> String, modifier: Modifier = Modifier) { + val uriHandler = LocalUriHandler.current + + val aboutLibraries by rememberLibraries(librariesJsonProvider) + val libraryGroups by remember(aboutLibraries) { + derivedStateOf { + aboutLibraries?.libraries + ?.groupBy(Library::authors) + ?.toSortedMap { key1, key2 -> + when { + key1 == null -> 1 + key2 == null -> -1 + else -> key1.compareTo(key2) + } + }?.mapValues { (_, libs) -> + libs.distinctBy(Library::name).sortedBy(Library::uniqueId) + } + } + } + + LazyColumn(modifier) { + libraryGroups?.forEach { (authors, libs) -> + stickyHeader { + LibraryAuthorsRow(authors ?: "Unknown authors") + } + items(libs) { lib -> + LibraryRow(lib, uriHandler::openUri) + } + } + } +} + +@Composable +private fun LibraryAuthorsRow(authors: String) { + Text( + authors, + modifier = Modifier + .background(MaterialTheme.colorScheme.background) + .fillMaxWidth() + .padding(8.dp), + style = MaterialTheme.typography.titleSmall, + color = MaterialTheme.colorScheme.primary + ) +} + +@OptIn(ExperimentalLayoutApi::class) +@Composable +private fun LibraryRow(lib: Library, onLicenseClick: (String) -> Unit) { + ListItem( + headlineContent = { Text(lib.name) }, + supportingContent = { + Column(verticalArrangement = Arrangement.spacedBy(4.dp)) { + lib.description?.let { description -> + Text( + description, + maxLines = 3, + style = MaterialTheme.typography.bodySmall, + ) + } + FlowRow(horizontalArrangement = Arrangement.spacedBy(8.dp)) { + lib.licenses.forEach { license -> + LicenseChip(license) { + license.url?.let { onLicenseClick(it) } + } + } + } + } + }, + trailingContent = lib.artifactVersion?.let { version -> + { + Text(version, style = MaterialTheme.typography.labelSmall, fontFamily = FontFamily.Monospace) + } + } + ) +} + +@Composable +private fun LicenseChip(license: License, onClick: () -> Unit) { + AssistChip( + onClick = onClick, + label = { + Text( + license.name, + style = MaterialTheme.typography.labelMedium, + color = MaterialTheme.colorScheme.secondary + ) + }, + trailingIcon = { + Icon( + LucideIcons.SquareArrowOutUpRight, + null, + Modifier.size(16.dp) + ) + }, + shape = MaterialTheme.shapes.extraLarge, + ) +} diff --git a/tasks-app-shared/src/jvmMain/kotlin/net/opatry/tasks/app/ui/screen/aboutScreenJvm.kt b/tasks-app-shared/src/jvmMain/kotlin/net/opatry/tasks/app/ui/screen/aboutScreenJvm.kt new file mode 100644 index 00000000..730dcc0e --- /dev/null +++ b/tasks-app-shared/src/jvmMain/kotlin/net/opatry/tasks/app/ui/screen/aboutScreenJvm.kt @@ -0,0 +1,57 @@ +/* + * Copyright (c) 2024 Olivier Patry + * + * Permission is hereby granted, free of charge, to any person obtaining + * a copy of this software and associated documentation files (the "Software"), + * to deal in the Software without restriction, including without limitation + * the rights to use, copy, modify, merge, publish, distribute, sublicense, + * and/or sell copies of the Software, and to permit persons to whom the Software + * is furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES + * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE + * OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ + +package net.opatry.tasks.app.ui.screen + +import androidx.compose.foundation.layout.Box +import androidx.compose.foundation.layout.padding +import androidx.compose.material3.Scaffold +import androidx.compose.runtime.Composable +import androidx.compose.runtime.getValue +import androidx.compose.runtime.mutableStateOf +import androidx.compose.runtime.remember +import androidx.compose.runtime.setValue +import androidx.compose.ui.Modifier + + +@Composable +actual fun AboutScreen(aboutApp: AboutApp) { + var currentDestination by remember { mutableStateOf(AboutScreenDestination.About) } + + Scaffold(topBar = { + when (currentDestination) { + AboutScreenDestination.Credits -> CreditsScreenTopAppBar { + currentDestination = AboutScreenDestination.About + } + AboutScreenDestination.About -> AboutScreenTopAppBar(aboutApp.name, aboutApp.version) + } + }) { innerPadding -> + Box(Modifier.padding(innerPadding)) { + when (currentDestination) { + AboutScreenDestination.About -> AboutScreenContent(aboutApp) { destination -> + currentDestination = destination + } + AboutScreenDestination.Credits -> CreditsScreenContent(aboutApp.aboutLibrariesJsonProvider) + } + } + } +} From 5934dc03d7e840ac096bd4842e1ee020756726d0 Mon Sep 17 00:00:00 2001 From: Olivier Patry Date: Thu, 3 Oct 2024 00:47:45 +0200 Subject: [PATCH 7/7] About screen is a kind of feature, bump to 1.1.0 --- gradle/libs.versions.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 1e4c08df..b8cf1932 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -1,5 +1,5 @@ [versions] -tasksApp-name = "1.0.1" +tasksApp-name = "1.1.0" compileSdk = "34" minSdk = "24" targetSdk = "34"