From ff9b38eed9917aad8bb62364967e619629115912 Mon Sep 17 00:00:00 2001 From: Aayush Gupta Date: Mon, 4 May 2026 13:32:13 +0800 Subject: [PATCH] Initial import of about screen logic from refactor Rework for multiplatform support while cleaning and making logic more modular for ease with testing individual components Signed-off-by: Aayush Gupta --- build.gradle.kts | 1 + composeApp/build.gradle.kts | 14 + .../kotlin/net/newpipe/app/ComposeActivity.kt | 15 +- .../net/newpipe/app/extensions/Context.kt | 3 +- .../drawable/ic_arrow_back.xml | 15 + .../drawable/ic_foreground.xml | 15 + .../files/aboutlibraries.json | 3736 +++++++++++++++++ .../composeResources/files/keep.xml | 7 + .../composeResources/values/strings.xml | 29 + .../commonMain/kotlin/net/newpipe/app/App.kt | 5 +- .../kotlin/net/newpipe/app/Constants.kt | 19 + .../net/newpipe/app/composable/TopAppBar.kt | 76 + .../app/composable/about/LinkListItem.kt | 73 + .../kotlin/net/newpipe/app/model/Link.kt | 18 + .../net/newpipe/app/navigation/NavDisplay.kt | 8 +- .../net/newpipe/app/navigation/Screen.kt | 4 +- .../app/preview/ThemePreviewProvider.kt | 21 + .../net/newpipe/app/screen/about/AboutPage.kt | 152 + .../newpipe/app/screen/about/AboutScreen.kt | 94 + .../newpipe/app/screen/about/LicensePage.kt | 80 + .../app/screen/about/navigation/Page.kt | 19 + .../kotlin/net/newpipe/app/theme/Color.kt | 2 + .../kotlin/net/newpipe/app/theme/Dimens.kt | 24 + .../kotlin/net/newpipe/app/theme/Theme.kt | 38 +- gradle/libs.versions.toml | 3 + 25 files changed, 4448 insertions(+), 23 deletions(-) create mode 100644 composeApp/src/commonMain/composeResources/drawable/ic_arrow_back.xml create mode 100644 composeApp/src/commonMain/composeResources/drawable/ic_foreground.xml create mode 100644 composeApp/src/commonMain/composeResources/files/aboutlibraries.json create mode 100644 composeApp/src/commonMain/composeResources/files/keep.xml create mode 100644 composeApp/src/commonMain/kotlin/net/newpipe/app/Constants.kt create mode 100644 composeApp/src/commonMain/kotlin/net/newpipe/app/composable/TopAppBar.kt create mode 100644 composeApp/src/commonMain/kotlin/net/newpipe/app/composable/about/LinkListItem.kt create mode 100644 composeApp/src/commonMain/kotlin/net/newpipe/app/model/Link.kt create mode 100644 composeApp/src/commonMain/kotlin/net/newpipe/app/preview/ThemePreviewProvider.kt create mode 100644 composeApp/src/commonMain/kotlin/net/newpipe/app/screen/about/AboutPage.kt create mode 100644 composeApp/src/commonMain/kotlin/net/newpipe/app/screen/about/AboutScreen.kt create mode 100644 composeApp/src/commonMain/kotlin/net/newpipe/app/screen/about/LicensePage.kt create mode 100644 composeApp/src/commonMain/kotlin/net/newpipe/app/screen/about/navigation/Page.kt create mode 100644 composeApp/src/commonMain/kotlin/net/newpipe/app/theme/Dimens.kt diff --git a/build.gradle.kts b/build.gradle.kts index 6b9e15e29..dbd3ba256 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -22,4 +22,5 @@ plugins { alias(libs.plugins.jetbrains.kotlinx.serialization) apply false alias(libs.plugins.sonarqube) apply false alias(libs.plugins.koin) apply false + alias(libs.plugins.about.libraries) apply false } diff --git a/composeApp/build.gradle.kts b/composeApp/build.gradle.kts index 0f6780b6e..120daffa1 100644 --- a/composeApp/build.gradle.kts +++ b/composeApp/build.gradle.kts @@ -12,6 +12,7 @@ plugins { alias(libs.plugins.jetbrains.compose.multiplatform) alias(libs.plugins.koin) alias(libs.plugins.jetbrains.kotlinx.serialization) + alias(libs.plugins.about.libraries) } kotlin { @@ -72,6 +73,8 @@ kotlin { implementation(libs.koin.annotations) implementation(libs.russhwolf.settings) + + implementation(libs.about.libraries.compose.m3) } commonTest.dependencies { implementation(libs.kotlin.test) @@ -107,3 +110,14 @@ compose.desktop { koinCompiler { userLogs = true // See what the compiler plugin detects } + +// Run ./gradlew exportLibraryDefinitions to generate/update the libraries and license definitions +aboutLibraries { + collect { + fetchRemoteLicense = true + } + export { + outputFile = file("src/commonMain/composeResources/files/aboutlibraries.json") + prettyPrint = true + } +} diff --git a/composeApp/src/androidMain/kotlin/net/newpipe/app/ComposeActivity.kt b/composeApp/src/androidMain/kotlin/net/newpipe/app/ComposeActivity.kt index 622b6e296..ccd7893a0 100644 --- a/composeApp/src/androidMain/kotlin/net/newpipe/app/ComposeActivity.kt +++ b/composeApp/src/androidMain/kotlin/net/newpipe/app/ComposeActivity.kt @@ -9,7 +9,7 @@ import android.os.Bundle import androidx.activity.ComponentActivity import androidx.activity.compose.setContent import androidx.activity.enableEdgeToEdge -import androidx.core.content.IntentCompat +import kotlinx.serialization.json.Json import net.newpipe.Constants import net.newpipe.app.navigation.Screen @@ -21,14 +21,13 @@ class ComposeActivity : ComponentActivity() { enableEdgeToEdge() super.onCreate(savedInstanceState) - val startDestination = IntentCompat.getParcelableExtra( - intent, - Constants.INTENT_SCREEN_KEY, - Screen::class.java - )!! - setContent { - App(startDestination) + App( + // TODO: Change when everything is in compose and this is the primary activity + startDestination = Json.decodeFromString( + intent.getStringExtra(Constants.INTENT_SCREEN_KEY)!! + ) + ) } } } diff --git a/composeApp/src/androidMain/kotlin/net/newpipe/app/extensions/Context.kt b/composeApp/src/androidMain/kotlin/net/newpipe/app/extensions/Context.kt index 134edd20a..a02582a15 100644 --- a/composeApp/src/androidMain/kotlin/net/newpipe/app/extensions/Context.kt +++ b/composeApp/src/androidMain/kotlin/net/newpipe/app/extensions/Context.kt @@ -7,6 +7,7 @@ package net.newpipe.app.extensions import android.content.Context import android.content.Intent +import kotlinx.serialization.json.Json import net.newpipe.Constants import net.newpipe.app.ComposeActivity import net.newpipe.app.navigation.Screen @@ -16,6 +17,6 @@ import kotlin.jvm.java * Navigates to a given compose destination */ fun Context.navigateTo(screen: Screen) = Intent(this, ComposeActivity::class.java).also { intent -> - intent.putExtra(Constants.INTENT_SCREEN_KEY, screen.name) + intent.putExtra(Constants.INTENT_SCREEN_KEY, Json.encodeToString(screen)) startActivity(intent) } diff --git a/composeApp/src/commonMain/composeResources/drawable/ic_arrow_back.xml b/composeApp/src/commonMain/composeResources/drawable/ic_arrow_back.xml new file mode 100644 index 000000000..fb58b74b1 --- /dev/null +++ b/composeApp/src/commonMain/composeResources/drawable/ic_arrow_back.xml @@ -0,0 +1,15 @@ + + + + + diff --git a/composeApp/src/commonMain/composeResources/drawable/ic_foreground.xml b/composeApp/src/commonMain/composeResources/drawable/ic_foreground.xml new file mode 100644 index 000000000..6ac4f71e8 --- /dev/null +++ b/composeApp/src/commonMain/composeResources/drawable/ic_foreground.xml @@ -0,0 +1,15 @@ + + + + + diff --git a/composeApp/src/commonMain/composeResources/files/aboutlibraries.json b/composeApp/src/commonMain/composeResources/files/aboutlibraries.json new file mode 100644 index 000000000..17adc2316 --- /dev/null +++ b/composeApp/src/commonMain/composeResources/files/aboutlibraries.json @@ -0,0 +1,3736 @@ +{ + "libraries": [ + { + "uniqueId": "androidx.activity:activity", + "artifactVersion": "1.13.0", + "name": "Activity", + "description": "Provides the base Activity subclass and the relevant hooks to build a composable structure on top.", + "website": "https://developer.android.com/jetpack/androidx/releases/activity#1.13.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "organization": { + "name": "The Android Open Source Project" + }, + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "https://cs.android.com/androidx/platform/frameworks/support" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.activity:activity-compose", + "artifactVersion": "1.13.0", + "name": "Activity Compose", + "description": "Compose integration with Activity", + "website": "https://developer.android.com/jetpack/androidx/releases/activity#1.13.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "organization": { + "name": "The Android Open Source Project" + }, + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "https://cs.android.com/androidx/platform/frameworks/support" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.activity:activity-ktx", + "artifactVersion": "1.13.0", + "name": "Activity Kotlin Extensions", + "description": "Kotlin extensions for 'activity' artifact", + "website": "https://developer.android.com/jetpack/androidx/releases/activity#1.13.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "organization": { + "name": "The Android Open Source Project" + }, + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "https://cs.android.com/androidx/platform/frameworks/support" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.annotation:annotation-experimental", + "artifactVersion": "1.4.1", + "name": "Experimental annotation", + "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.", + "website": "https://developer.android.com/jetpack/androidx/releases/annotation#1.4.1", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "organization": { + "name": "The Android Open Source Project" + }, + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "https://cs.android.com/androidx/platform/frameworks/support" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.annotation:annotation-jvm", + "artifactVersion": "1.9.1", + "name": "Annotation", + "description": "Provides source annotations for tooling and readability.", + "website": "https://developer.android.com/jetpack/androidx/releases/annotation#1.9.1", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "organization": { + "name": "The Android Open Source Project" + }, + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "https://cs.android.com/androidx/platform/frameworks/support" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.appcompat:appcompat", + "artifactVersion": "1.7.1", + "name": "AppCompat", + "description": "Provides backwards-compatible implementations of UI-related Android SDK functionality, including dark mode and Material theming.", + "website": "https://developer.android.com/jetpack/androidx/releases/appcompat#1.7.1", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "organization": { + "name": "The Android Open Source Project" + }, + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "https://cs.android.com/androidx/platform/frameworks/support" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.appcompat:appcompat-resources", + "artifactVersion": "1.7.1", + "name": "AppCompat Resources", + "description": "Provides backward-compatible implementations of resource-related Android SDKfunctionality, including color state list theming.", + "website": "https://developer.android.com/jetpack/androidx/releases/appcompat#1.7.1", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "organization": { + "name": "The Android Open Source Project" + }, + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "https://cs.android.com/androidx/platform/frameworks/support" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.arch.core:core-common", + "artifactVersion": "2.2.0", + "name": "Android Arch-Common", + "description": "Android Arch-Common", + "website": "https://developer.android.com/jetpack/androidx/releases/arch-core#2.2.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "https://cs.android.com/androidx/platform/frameworks/support" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.arch.core:core-runtime", + "artifactVersion": "2.2.0", + "name": "Android Arch-Runtime", + "description": "Android Arch-Runtime", + "website": "https://developer.android.com/jetpack/androidx/releases/arch-core#2.2.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "https://cs.android.com/androidx/platform/frameworks/support" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.asynclayoutinflater:asynclayoutinflater", + "artifactVersion": "1.0.0", + "name": "Support Async Layout Inflater", + "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.", + "website": "http://developer.android.com/tools/extras/support-library.html", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "http://source.android.com" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.autofill:autofill", + "artifactVersion": "1.0.0", + "name": "AndroidX Autofill", + "description": "AndroidX Autofill", + "website": "https://developer.android.com/jetpack/androidx", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "http://source.android.com" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.collection:collection-jvm", + "artifactVersion": "1.5.0", + "name": "collections", + "description": "Standalone efficient collections.", + "website": "https://developer.android.com/jetpack/androidx/releases/collection#1.5.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "organization": { + "name": "The Android Open Source Project" + }, + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "https://cs.android.com/androidx/platform/frameworks/support" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.collection:collection-ktx", + "artifactVersion": "1.5.0", + "name": "Collections Kotlin Extensions", + "description": "Kotlin extensions for 'collection' artifact", + "website": "https://developer.android.com/jetpack/androidx/releases/collection#1.5.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "organization": { + "name": "The Android Open Source Project" + }, + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "https://cs.android.com/androidx/platform/frameworks/support" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.compose.animation:animation-android", + "artifactVersion": "1.11.0-rc01", + "name": "Compose Animation", + "description": "Compose animation library", + "website": "https://developer.android.com/jetpack/androidx/releases/compose-animation#1.11.0-rc01", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "organization": { + "name": "The Android Open Source Project" + }, + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "https://cs.android.com/androidx/platform/frameworks/support" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.compose.animation:animation-core-android", + "artifactVersion": "1.11.0-rc01", + "name": "Compose Animation Core", + "description": "Animation engine and animation primitives that are the building blocks of the Compose animation library", + "website": "https://developer.android.com/jetpack/androidx/releases/compose-animation#1.11.0-rc01", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "organization": { + "name": "The Android Open Source Project" + }, + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "https://cs.android.com/androidx/platform/frameworks/support" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.compose.foundation:foundation-android", + "artifactVersion": "1.11.0-rc01", + "name": "Compose Foundation", + "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", + "website": "https://developer.android.com/jetpack/androidx/releases/compose-foundation#1.11.0-rc01", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "organization": { + "name": "The Android Open Source Project" + }, + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "https://cs.android.com/androidx/platform/frameworks/support" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.compose.foundation:foundation-layout-android", + "artifactVersion": "1.11.0-rc01", + "name": "Compose Layouts", + "description": "Compose layout implementations", + "website": "https://developer.android.com/jetpack/androidx/releases/compose-foundation#1.11.0-rc01", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "organization": { + "name": "The Android Open Source Project" + }, + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "https://cs.android.com/androidx/platform/frameworks/support" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.compose.material3:material3-android", + "artifactVersion": "1.5.0-alpha17", + "name": "Compose Material3 Components", + "description": "Compose Material You Design Components library", + "website": "https://developer.android.com/jetpack/androidx/releases/compose-material3#1.5.0-alpha17", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "organization": { + "name": "The Android Open Source Project" + }, + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "https://cs.android.com/androidx/platform/frameworks/support" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.compose.material:material-ripple-android", + "artifactVersion": "1.11.0-rc01", + "name": "Compose Material Ripple", + "description": "Material ripple used to build interactive components", + "website": "https://developer.android.com/jetpack/androidx/releases/compose-material#1.11.0-rc01", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "organization": { + "name": "The Android Open Source Project" + }, + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "https://cs.android.com/androidx/platform/frameworks/support" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.compose.runtime:runtime-android", + "artifactVersion": "1.11.0-rc01", + "name": "Compose Runtime", + "description": "Tree composition support for code generated by the Compose compiler plugin and corresponding public API", + "website": "https://developer.android.com/jetpack/androidx/releases/compose-runtime#1.11.0-rc01", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "organization": { + "name": "The Android Open Source Project" + }, + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "https://cs.android.com/androidx/platform/frameworks/support" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.compose.runtime:runtime-annotation-android", + "artifactVersion": "1.11.0-rc01", + "name": "Compose Runtime Annotation", + "description": "Provides Compose-specific annotations used by the compiler and tooling", + "website": "https://developer.android.com/jetpack/androidx/releases/compose-runtime#1.11.0-rc01", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "organization": { + "name": "The Android Open Source Project" + }, + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "https://cs.android.com/androidx/platform/frameworks/support" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.compose.runtime:runtime-retain-android", + "artifactVersion": "1.11.0-rc01", + "name": "Compose Runtime Retain", + "description": "Preserve state in composable methods across configuration changes and other transient content destruction scenarios", + "website": "https://developer.android.com/jetpack/androidx/releases/compose-runtime#1.11.0-rc01", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "organization": { + "name": "The Android Open Source Project" + }, + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "https://cs.android.com/androidx/platform/frameworks/support" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.compose.runtime:runtime-saveable-android", + "artifactVersion": "1.11.0-rc01", + "name": "Compose Saveable", + "description": "Compose components that allow saving and restoring the local ui state", + "website": "https://developer.android.com/jetpack/androidx/releases/compose-runtime#1.11.0-rc01", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "organization": { + "name": "The Android Open Source Project" + }, + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "https://cs.android.com/androidx/platform/frameworks/support" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.compose.ui:ui-android", + "artifactVersion": "1.11.0-rc01", + "name": "Compose UI", + "description": "Compose UI primitives. This library contains the primitives that form the Compose UI Toolkit, such as drawing, measurement and layout.", + "website": "https://developer.android.com/jetpack/androidx/releases/compose-ui#1.11.0-rc01", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "organization": { + "name": "The Android Open Source Project" + }, + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "https://cs.android.com/androidx/platform/frameworks/support" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.compose.ui:ui-geometry-android", + "artifactVersion": "1.11.0-rc01", + "name": "Compose Geometry", + "description": "Compose classes related to dimensions without units", + "website": "https://developer.android.com/jetpack/androidx/releases/compose-ui#1.11.0-rc01", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "organization": { + "name": "The Android Open Source Project" + }, + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "https://cs.android.com/androidx/platform/frameworks/support" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.compose.ui:ui-graphics-android", + "artifactVersion": "1.11.0-rc01", + "name": "Compose Graphics", + "description": "Compose graphics", + "website": "https://developer.android.com/jetpack/androidx/releases/compose-ui#1.11.0-rc01", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "organization": { + "name": "The Android Open Source Project" + }, + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "https://cs.android.com/androidx/platform/frameworks/support" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.compose.ui:ui-text-android", + "artifactVersion": "1.11.0-rc01", + "name": "Compose UI Text", + "description": "Compose Text primitives and utilities", + "website": "https://developer.android.com/jetpack/androidx/releases/compose-ui#1.11.0-rc01", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "organization": { + "name": "The Android Open Source Project" + }, + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "https://cs.android.com/androidx/platform/frameworks/support" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.compose.ui:ui-tooling-android", + "artifactVersion": "1.11.0-rc01", + "name": "Compose Tooling", + "description": "Compose tooling library. This library exposes information to our tools for better IDE support.", + "website": "https://developer.android.com/jetpack/androidx/releases/compose-ui#1.11.0-rc01", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "organization": { + "name": "The Android Open Source Project" + }, + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "https://cs.android.com/androidx/platform/frameworks/support" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.compose.ui:ui-tooling-data-android", + "artifactVersion": "1.11.0-rc01", + "name": "Compose Tooling Data", + "description": "Compose tooling library data. This library provides data about compose for different tooling purposes.", + "website": "https://developer.android.com/jetpack/androidx/releases/compose-ui#1.11.0-rc01", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "organization": { + "name": "The Android Open Source Project" + }, + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "https://cs.android.com/androidx/platform/frameworks/support" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.compose.ui:ui-tooling-preview-android", + "artifactVersion": "1.11.0-rc01", + "name": "Compose UI Preview Tooling", + "description": "Compose tooling library API. This library provides the API required to declare @Preview composables in user apps.", + "website": "https://developer.android.com/jetpack/androidx/releases/compose-ui#1.11.0-rc01", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "organization": { + "name": "The Android Open Source Project" + }, + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "https://cs.android.com/androidx/platform/frameworks/support" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.compose.ui:ui-unit-android", + "artifactVersion": "1.11.0-rc01", + "name": "Compose Unit", + "description": "Compose classes for simple units", + "website": "https://developer.android.com/jetpack/androidx/releases/compose-ui#1.11.0-rc01", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "organization": { + "name": "The Android Open Source Project" + }, + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "https://cs.android.com/androidx/platform/frameworks/support" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.compose.ui:ui-util-android", + "artifactVersion": "1.11.0-rc01", + "name": "Compose Util", + "description": "Internal Compose utilities used by other modules", + "website": "https://developer.android.com/jetpack/androidx/releases/compose-ui#1.11.0-rc01", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "organization": { + "name": "The Android Open Source Project" + }, + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "https://cs.android.com/androidx/platform/frameworks/support" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.concurrent:concurrent-futures", + "artifactVersion": "1.1.0", + "name": "AndroidX Futures", + "description": "Androidx implementation of Guava's ListenableFuture", + "website": "https://developer.android.com/topic/libraries/architecture/index.html", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "http://source.android.com" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.coordinatorlayout:coordinatorlayout", + "artifactVersion": "1.0.0", + "name": "Support Coordinator Layout", + "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.", + "website": "http://developer.android.com/tools/extras/support-library.html", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "http://source.android.com" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.core:core", + "artifactVersion": "1.18.0", + "name": "Core", + "description": "Provides backward-compatible implementations of Android platform APIs and features.", + "website": "https://developer.android.com/jetpack/androidx/releases/core#1.18.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "organization": { + "name": "The Android Open Source Project" + }, + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "https://cs.android.com/androidx/platform/frameworks/support" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.core:core-ktx", + "artifactVersion": "1.18.0", + "name": "Core Kotlin Extensions", + "description": "Kotlin extensions for 'core' artifact", + "website": "https://developer.android.com/jetpack/androidx/releases/core#1.18.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "organization": { + "name": "The Android Open Source Project" + }, + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "https://cs.android.com/androidx/platform/frameworks/support" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.core:core-viewtree", + "artifactVersion": "1.0.0", + "name": "androidx.core:core-viewtree", + "description": "Provides ViewTree extensions packaged for use by other core androidx libraries", + "website": "https://developer.android.com/jetpack/androidx/releases/core#1.0.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "organization": { + "name": "The Android Open Source Project" + }, + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "https://cs.android.com/androidx/platform/frameworks/support" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.cursoradapter:cursoradapter", + "artifactVersion": "1.0.0", + "name": "Support Cursor Adapter", + "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.", + "website": "http://developer.android.com/tools/extras/support-library.html", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "http://source.android.com" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.customview:customview", + "artifactVersion": "1.1.0", + "name": "Support Custom View", + "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.", + "website": "https://developer.android.com/jetpack/androidx", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "http://source.android.com" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.customview:customview-poolingcontainer", + "artifactVersion": "1.0.0", + "name": "androidx.customview:poolingcontainer", + "description": "Utilities for listening to the lifecycle of containers that manage their child Views' lifecycle, such as RecyclerView", + "website": "https://developer.android.com/jetpack/androidx/releases/customview#1.0.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "https://cs.android.com/androidx/platform/frameworks/support" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.documentfile:documentfile", + "artifactVersion": "1.0.0", + "name": "Support Document File", + "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.", + "website": "http://developer.android.com/tools/extras/support-library.html", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "http://source.android.com" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.drawerlayout:drawerlayout", + "artifactVersion": "1.0.0", + "name": "Support Drawer Layout", + "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.", + "website": "http://developer.android.com/tools/extras/support-library.html", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "http://source.android.com" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.dynamicanimation:dynamicanimation", + "artifactVersion": "1.0.0", + "name": "Support DynamicAnimation", + "description": "Physics-based animation in support library, where the animations are driven by physics force. You can use this Animation library to create smooth and realistic animations.", + "website": "http://developer.android.com/tools/extras/support-library.html", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "http://source.android.com" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.emoji2:emoji2", + "artifactVersion": "1.4.0", + "name": "Emoji2", + "description": "Core library to enable emoji compatibility in Kitkat and newer devices to avoid the empty emoji characters.", + "website": "https://developer.android.com/jetpack/androidx/releases/emoji2#1.4.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "https://cs.android.com/androidx/platform/frameworks/support" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.emoji2:emoji2-views-helper", + "artifactVersion": "1.4.0", + "name": "Emoji2 Views Helper", + "description": "Provide helper classes for Emoji2 views.", + "website": "https://developer.android.com/jetpack/androidx/releases/emoji2#1.4.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "https://cs.android.com/androidx/platform/frameworks/support" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.fragment:fragment", + "artifactVersion": "1.8.9", + "name": "fragment", + "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.", + "website": "https://developer.android.com/jetpack/androidx/releases/fragment#1.8.9", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "organization": { + "name": "The Android Open Source Project" + }, + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "https://cs.android.com/androidx/platform/frameworks/support" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.fragment:fragment-ktx", + "artifactVersion": "1.8.9", + "name": "Fragment Kotlin Extensions", + "description": "Kotlin extensions for 'fragment' artifact", + "website": "https://developer.android.com/jetpack/androidx/releases/fragment#1.8.9", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "organization": { + "name": "The Android Open Source Project" + }, + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "https://cs.android.com/androidx/platform/frameworks/support" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.graphics:graphics-path", + "artifactVersion": "1.0.1", + "name": "Android Graphics Path", + "description": "Query segment data for android.graphics.Path objects", + "website": "https://developer.android.com/jetpack/androidx/releases/graphics#1.0.1", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "organization": { + "name": "The Android Open Source Project" + }, + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "https://cs.android.com/androidx/platform/frameworks/support" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.graphics:graphics-shapes-android", + "artifactVersion": "1.1.0", + "name": "Graphics Shapes", + "description": "create and render rounded polygonal shapes", + "website": "https://developer.android.com/jetpack/androidx/releases/graphics#1.1.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "organization": { + "name": "The Android Open Source Project" + }, + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "https://cs.android.com/androidx/platform/frameworks/support" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.interpolator:interpolator", + "artifactVersion": "1.0.0", + "name": "Support Interpolators", + "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.", + "website": "http://developer.android.com/tools/extras/support-library.html", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "http://source.android.com" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.legacy:legacy-support-core-ui", + "artifactVersion": "1.0.0", + "name": "Support core UI", + "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.", + "website": "http://developer.android.com/tools/extras/support-library.html", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "http://source.android.com" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.legacy:legacy-support-core-utils", + "artifactVersion": "1.0.0", + "name": "Support core utils", + "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.", + "website": "http://developer.android.com/tools/extras/support-library.html", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "http://source.android.com" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.lifecycle:lifecycle-common-java8", + "artifactVersion": "2.10.0", + "name": "Lifecycle-Common for Java 8", + "description": "Android Lifecycle-Common for Java 8 Language", + "website": "https://developer.android.com/jetpack/androidx/releases/lifecycle#2.10.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "organization": { + "name": "The Android Open Source Project" + }, + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "https://cs.android.com/androidx/platform/frameworks/support" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.lifecycle:lifecycle-common-jvm", + "artifactVersion": "2.10.0", + "name": "Lifecycle-Common", + "description": "Android Lifecycle-Common", + "website": "https://developer.android.com/jetpack/androidx/releases/lifecycle#2.10.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "organization": { + "name": "The Android Open Source Project" + }, + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "https://cs.android.com/androidx/platform/frameworks/support" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.lifecycle:lifecycle-livedata", + "artifactVersion": "2.10.0", + "name": "Lifecycle LiveData", + "description": "Android Lifecycle LiveData", + "website": "https://developer.android.com/jetpack/androidx/releases/lifecycle#2.10.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "organization": { + "name": "The Android Open Source Project" + }, + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "https://cs.android.com/androidx/platform/frameworks/support" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.lifecycle:lifecycle-livedata-core", + "artifactVersion": "2.10.0", + "name": "Lifecycle LiveData Core", + "description": "Android Lifecycle LiveData Core", + "website": "https://developer.android.com/jetpack/androidx/releases/lifecycle#2.10.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "organization": { + "name": "The Android Open Source Project" + }, + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "https://cs.android.com/androidx/platform/frameworks/support" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.lifecycle:lifecycle-livedata-core-ktx", + "artifactVersion": "2.10.0", + "name": "LiveData Core Kotlin Extensions", + "description": "Kotlin extensions for 'livedata-core' artifact", + "website": "https://developer.android.com/jetpack/androidx/releases/lifecycle#2.10.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "organization": { + "name": "The Android Open Source Project" + }, + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "https://cs.android.com/androidx/platform/frameworks/support" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.lifecycle:lifecycle-process", + "artifactVersion": "2.10.0", + "name": "Lifecycle Process", + "description": "Android Lifecycle Process", + "website": "https://developer.android.com/jetpack/androidx/releases/lifecycle#2.10.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "organization": { + "name": "The Android Open Source Project" + }, + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "https://cs.android.com/androidx/platform/frameworks/support" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.lifecycle:lifecycle-runtime-android", + "artifactVersion": "2.10.0", + "name": "Lifecycle Runtime", + "description": "Android Lifecycle Runtime", + "website": "https://developer.android.com/jetpack/androidx/releases/lifecycle#2.10.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "organization": { + "name": "The Android Open Source Project" + }, + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "https://cs.android.com/androidx/platform/frameworks/support" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.lifecycle:lifecycle-runtime-compose-android", + "artifactVersion": "2.10.0", + "name": "Lifecycle Runtime Compose", + "description": "Compose integration with Lifecycle", + "website": "https://developer.android.com/jetpack/androidx/releases/lifecycle#2.10.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "organization": { + "name": "The Android Open Source Project" + }, + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "https://cs.android.com/androidx/platform/frameworks/support" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.lifecycle:lifecycle-runtime-ktx-android", + "artifactVersion": "2.10.0", + "name": "Lifecycle Kotlin Extensions", + "description": "Kotlin extensions for 'lifecycle' artifact", + "website": "https://developer.android.com/jetpack/androidx/releases/lifecycle#2.10.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "organization": { + "name": "The Android Open Source Project" + }, + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "https://cs.android.com/androidx/platform/frameworks/support" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.lifecycle:lifecycle-viewmodel-android", + "artifactVersion": "2.10.0", + "name": "Lifecycle ViewModel", + "description": "Android Lifecycle ViewModel", + "website": "https://developer.android.com/jetpack/androidx/releases/lifecycle#2.10.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "organization": { + "name": "The Android Open Source Project" + }, + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "https://cs.android.com/androidx/platform/frameworks/support" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.lifecycle:lifecycle-viewmodel-compose-android", + "artifactVersion": "2.10.0", + "name": "Lifecycle ViewModel Compose", + "description": "Compose integration with Lifecycle ViewModel", + "website": "https://developer.android.com/jetpack/androidx/releases/lifecycle#2.10.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "organization": { + "name": "The Android Open Source Project" + }, + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "https://cs.android.com/androidx/platform/frameworks/support" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.lifecycle:lifecycle-viewmodel-ktx", + "artifactVersion": "2.10.0", + "name": "Lifecycle ViewModel Kotlin Extensions", + "description": "Kotlin extensions for 'viewmodel' artifact", + "website": "https://developer.android.com/jetpack/androidx/releases/lifecycle#2.10.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "organization": { + "name": "The Android Open Source Project" + }, + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "https://cs.android.com/androidx/platform/frameworks/support" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.lifecycle:lifecycle-viewmodel-navigation3-android", + "artifactVersion": "2.10.0", + "name": "Androidx Lifecycle Navigation3 ViewModel", + "description": "Provides the ViewModel wrapper for nav3.", + "website": "https://developer.android.com/jetpack/androidx/releases/lifecycle#2.10.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "organization": { + "name": "The Android Open Source Project" + }, + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "https://cs.android.com/androidx/platform/frameworks/support" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.lifecycle:lifecycle-viewmodel-savedstate-android", + "artifactVersion": "2.10.0", + "name": "Lifecycle ViewModel with SavedState", + "description": "Android Lifecycle ViewModel", + "website": "https://developer.android.com/jetpack/androidx/releases/lifecycle#2.10.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "organization": { + "name": "The Android Open Source Project" + }, + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "https://cs.android.com/androidx/platform/frameworks/support" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.loader:loader", + "artifactVersion": "1.0.0", + "name": "Support loader", + "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.", + "website": "http://developer.android.com/tools/extras/support-library.html", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "http://source.android.com" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.localbroadcastmanager:localbroadcastmanager", + "artifactVersion": "1.0.0", + "name": "Support Local Broadcast Manager", + "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.", + "website": "http://developer.android.com/tools/extras/support-library.html", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "http://source.android.com" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.navigation3:navigation3-runtime-android", + "artifactVersion": "1.1.0", + "name": "Androidx Navigation 3 Runtime", + "description": "Provides the building blocks for a Compose first Navigation solution that easily supports extensions.", + "website": "https://developer.android.com/jetpack/androidx/releases/navigation3#1.1.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "organization": { + "name": "The Android Open Source Project" + }, + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "https://cs.android.com/androidx/platform/frameworks/support" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.navigation3:navigation3-ui-android", + "artifactVersion": "1.1.0", + "name": "Androidx Navigation 3 UI", + "description": "Provides a Navigation3 display that uses the building blocks from runtime to create a higher level solution.", + "website": "https://developer.android.com/jetpack/androidx/releases/navigation3#1.1.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "organization": { + "name": "The Android Open Source Project" + }, + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "https://cs.android.com/androidx/platform/frameworks/support" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.navigationevent:navigationevent-android", + "artifactVersion": "1.0.2", + "name": "Navigation Event", + "description": "Provides APIs to easily intercept platform navigation events, including swipes and clicks, to provide a consistent API surface for handling these events.", + "website": "https://developer.android.com/jetpack/androidx/releases/navigationevent#1.0.2", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "organization": { + "name": "The Android Open Source Project" + }, + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "https://cs.android.com/androidx/platform/frameworks/support" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.navigationevent:navigationevent-compose-android", + "artifactVersion": "1.0.2", + "name": "NavigationEvent Compose", + "description": "Compose integration with NavigationEvent", + "website": "https://developer.android.com/jetpack/androidx/releases/navigationevent#1.0.2", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "organization": { + "name": "The Android Open Source Project" + }, + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "https://cs.android.com/androidx/platform/frameworks/support" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.preference:preference", + "artifactVersion": "1.2.1", + "name": "AndroidX Preference", + "description": "AndroidX Preference", + "website": "https://developer.android.com/jetpack/androidx/releases/preference#1.2.1", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "https://cs.android.com/androidx/platform/frameworks/support" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.print:print", + "artifactVersion": "1.0.0", + "name": "Support Print", + "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.", + "website": "http://developer.android.com/tools/extras/support-library.html", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "http://source.android.com" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.profileinstaller:profileinstaller", + "artifactVersion": "1.4.0", + "name": "Profile Installer", + "description": "Allows libraries to prepopulate ahead of time compilation traces to be read by ART", + "website": "https://developer.android.com/jetpack/androidx/releases/profileinstaller#1.4.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "organization": { + "name": "The Android Open Source Project" + }, + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "https://cs.android.com/androidx/platform/frameworks/support" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.recyclerview:recyclerview", + "artifactVersion": "1.0.0", + "name": "Support RecyclerView v7", + "description": "Android Support RecyclerView v7", + "website": "http://developer.android.com/tools/extras/support-library.html", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "http://source.android.com" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.resourceinspection:resourceinspection-annotation", + "artifactVersion": "1.0.1", + "name": "Android Resource Inspection - Annotations", + "description": "Annotation processors for Android resource and layout inspection", + "website": "https://developer.android.com/jetpack/androidx/releases/resourceinspection#1.0.1", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "https://cs.android.com/androidx/platform/frameworks/support" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.savedstate:savedstate-android", + "artifactVersion": "1.4.0", + "name": "Saved State", + "description": "Android Lifecycle Saved State", + "website": "https://developer.android.com/jetpack/androidx/releases/savedstate#1.4.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "organization": { + "name": "The Android Open Source Project" + }, + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "https://cs.android.com/androidx/platform/frameworks/support" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.savedstate:savedstate-compose-android", + "artifactVersion": "1.4.0", + "name": "Saved State Compose", + "description": "Compose integration with Saved State", + "website": "https://developer.android.com/jetpack/androidx/releases/savedstate#1.4.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "organization": { + "name": "The Android Open Source Project" + }, + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "https://cs.android.com/androidx/platform/frameworks/support" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.savedstate:savedstate-ktx", + "artifactVersion": "1.4.0", + "name": "SavedState Kotlin Extensions", + "description": "Kotlin extensions for 'savedstate' artifact", + "website": "https://developer.android.com/jetpack/androidx/releases/savedstate#1.4.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "organization": { + "name": "The Android Open Source Project" + }, + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "https://cs.android.com/androidx/platform/frameworks/support" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.slidingpanelayout:slidingpanelayout", + "artifactVersion": "1.2.0", + "name": "Support Sliding Pane Layout", + "description": "SlidingPaneLayout offers a responsive, two pane layout that automatically switches between overlapping panes on smaller devices to a side by side view on larger devices.", + "website": "https://developer.android.com/jetpack/androidx/releases/slidingpanelayout#1.2.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "https://cs.android.com/androidx/platform/frameworks/support" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.startup:startup-runtime", + "artifactVersion": "1.1.1", + "name": "Android App Startup Runtime", + "description": "Android App Startup Runtime", + "website": "https://developer.android.com/jetpack/androidx/releases/startup#1.1.1", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "https://cs.android.com/androidx/platform/frameworks/support" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.swiperefreshlayout:swiperefreshlayout", + "artifactVersion": "1.0.0", + "name": "Support Custom View", + "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.", + "website": "http://developer.android.com/tools/extras/support-library.html", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "http://source.android.com" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.tracing:tracing", + "artifactVersion": "1.2.0", + "name": "Android Tracing", + "description": "Android Tracing", + "website": "https://developer.android.com/jetpack/androidx/releases/tracing#1.2.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "https://cs.android.com/androidx/platform/frameworks/support" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.transition:transition", + "artifactVersion": "1.6.0", + "name": "Transition", + "description": "Android Transition Support Library", + "website": "https://developer.android.com/jetpack/androidx/releases/transition#1.6.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "organization": { + "name": "The Android Open Source Project" + }, + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "https://cs.android.com/androidx/platform/frameworks/support" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.vectordrawable:vectordrawable", + "artifactVersion": "1.1.0", + "name": "Support VectorDrawable", + "description": "Android Support VectorDrawable", + "website": "https://developer.android.com/jetpack/androidx", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "http://source.android.com" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.vectordrawable:vectordrawable-animated", + "artifactVersion": "1.1.0", + "name": "Support AnimatedVectorDrawable", + "description": "Android Support AnimatedVectorDrawable", + "website": "https://developer.android.com/jetpack/androidx", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "http://source.android.com" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.versionedparcelable:versionedparcelable", + "artifactVersion": "1.1.1", + "name": "VersionedParcelable", + "description": "Provides a stable but relatively compact binary serialization format that can be passed across processes or persisted safely.", + "website": "http://developer.android.com/tools/extras/support-library.html", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "http://source.android.com" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.viewpager:viewpager", + "artifactVersion": "1.0.0", + "name": "Support View Pager", + "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.", + "website": "http://developer.android.com/tools/extras/support-library.html", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "http://source.android.com" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.window:window", + "artifactVersion": "1.5.0", + "name": "WindowManager", + "description": "WindowManager Jetpack library. Currently only provides additional functionality on foldable devices.", + "website": "https://developer.android.com/jetpack/androidx/releases/window#1.5.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "organization": { + "name": "The Android Open Source Project" + }, + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "https://cs.android.com/androidx/platform/frameworks/support" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "androidx.window:window-core-android", + "artifactVersion": "1.5.0", + "name": "WindowManager Core", + "description": "WindowManager Core Library.", + "website": "https://developer.android.com/jetpack/androidx/releases/window#1.5.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "organization": { + "name": "The Android Open Source Project" + }, + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "https://cs.android.com/androidx/platform/frameworks/support" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "co.touchlab:stately-concurrency-jvm", + "artifactVersion": "2.1.0", + "name": "Stately", + "description": "Multithreaded Kotlin Multiplatform Utilities", + "website": "https://github.com/touchlab/Stately", + "developers": [ + { + "name": "Kevin Galligan" + } + ], + "scm": { + "connection": "scm:git:git://github.com/touchlab/Stately.git", + "developerConnection": "scm:git:git://github.com/touchlab/Stately.git", + "url": "https://github.com/touchlab/Stately" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "com.github.skydoves:compose-stability-runtime-android", + "artifactVersion": "0.7.1", + "name": "Compose Stability Analyzer Runtime", + "description": "A Compose Compiler plugin that analyzes composable functions and generates stability reports.", + "website": "https://github.com/skydoves/compose-stability-analyzer/", + "developers": [ + { + "name": "Jaewoong Eum" + } + ], + "scm": { + "connection": "scm:git:git://github.com/skydoves/compose-stability-analyzer.git", + "developerConnection": "scm:git:git://github.com/skydoves/compose-stability-analyzer.git", + "url": "https://github.com/skydoves/compose-stability-analyzer/" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "com.google.guava:listenablefuture", + "artifactVersion": "1.0", + "name": "Guava ListenableFuture only", + "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-....", + "website": "https://github.com/google/guava/listenablefuture", + "developers": [ + { + "name": "Kevin Bourrillion", + "organisationUrl": "http://www.google.com" + } + ], + "scm": { + "connection": "scm:git:https://github.com/google/guava.git/listenablefuture", + "developerConnection": "scm:git:git@github.com:google/guava.git/listenablefuture", + "url": "https://github.com/google/guava/listenablefuture" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "com.mikepenz:aboutlibraries-compose-core-android", + "artifactVersion": "14.1.0", + "name": "AboutLibraries Compose UI Library", + "description": "AboutLibraries automatically detects all dependencies of a project and collects their information including the license. Optionally visualising it via the provided ui components.", + "website": "https://github.com/mikepenz/AboutLibraries", + "developers": [ + { + "name": "Mike Penz" + } + ], + "scm": { + "connection": "scm:git@github.com:mikepenz/AboutLibraries.git", + "developerConnection": "scm:git@github.com:mikepenz/AboutLibraries.git", + "url": "https://github.com/mikepenz/AboutLibraries" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "com.mikepenz:aboutlibraries-compose-m3-android", + "artifactVersion": "14.1.0", + "name": "AboutLibraries Compose Material 3 Library", + "description": "AboutLibraries automatically detects all dependencies of a project and collects their information including the license. Optionally visualising it via the provided ui components.", + "website": "https://github.com/mikepenz/AboutLibraries", + "developers": [ + { + "name": "Mike Penz" + } + ], + "scm": { + "connection": "scm:git@github.com:mikepenz/AboutLibraries.git", + "developerConnection": "scm:git@github.com:mikepenz/AboutLibraries.git", + "url": "https://github.com/mikepenz/AboutLibraries" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "com.mikepenz:aboutlibraries-core-android", + "artifactVersion": "14.1.0", + "name": "AboutLibraries Core Library", + "description": "AboutLibraries automatically detects all dependencies of a project and collects their information including the license. Optionally visualising it via the provided ui components.", + "website": "https://github.com/mikepenz/AboutLibraries", + "developers": [ + { + "name": "Mike Penz" + } + ], + "scm": { + "connection": "scm:git@github.com:mikepenz/AboutLibraries.git", + "developerConnection": "scm:git@github.com:mikepenz/AboutLibraries.git", + "url": "https://github.com/mikepenz/AboutLibraries" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "com.russhwolf:multiplatform-settings-android", + "artifactVersion": "1.3.0", + "name": "Multiplatform Settings", + "description": "A Kotlin Multiplatform library for saving simple key-value data", + "website": "https://github.com/russhwolf/multiplatform-settings", + "developers": [ + { + "name": "Russell Wolf" + } + ], + "scm": { + "url": "https://github.com/russhwolf/multiplatform-settings" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "io.insert-koin:koin-android", + "artifactVersion": "4.2.1", + "name": "Koin", + "description": "KOIN - Kotlin simple Dependency Injection Framework", + "website": "https://insert-koin.io/", + "developers": [ + { + "name": "Arnaud Giuliani" + } + ], + "scm": { + "connection": "scm:git:https://github.com/InsertKoinIO/koin.git", + "url": "https://github.com/InsertKoinIO/koin" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "org.jetbrains.androidx.lifecycle:lifecycle-common", + "artifactVersion": "2.10.0", + "name": "Lifecycle-Common", + "description": "Android Lifecycle-Common", + "website": "https://github.com/JetBrains/compose-jb", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "scm": { + "connection": "scm:git:https://github.com/JetBrains/compose-jb.git", + "developerConnection": "scm:git:https://github.com/JetBrains/compose-jb.git", + "url": "https://github.com/JetBrains/compose-jb" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "org.jetbrains.androidx.lifecycle:lifecycle-runtime", + "artifactVersion": "2.9.6", + "name": "Lifecycle Runtime", + "description": "Android Lifecycle Runtime", + "website": "https://github.com/JetBrains/compose-jb", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "scm": { + "connection": "scm:git:https://github.com/JetBrains/compose-jb.git", + "developerConnection": "scm:git:https://github.com/JetBrains/compose-jb.git", + "url": "https://github.com/JetBrains/compose-jb" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose", + "artifactVersion": "2.9.6", + "name": "Lifecycle Runtime Compose", + "description": "Compose integration with Lifecycle", + "website": "https://github.com/JetBrains/compose-jb", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "scm": { + "connection": "scm:git:https://github.com/JetBrains/compose-jb.git", + "developerConnection": "scm:git:https://github.com/JetBrains/compose-jb.git", + "url": "https://github.com/JetBrains/compose-jb" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "org.jetbrains.androidx.lifecycle:lifecycle-viewmodel", + "artifactVersion": "2.10.0", + "name": "Lifecycle ViewModel", + "description": "Android Lifecycle ViewModel", + "website": "https://github.com/JetBrains/compose-jb", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "scm": { + "connection": "scm:git:https://github.com/JetBrains/compose-jb.git", + "developerConnection": "scm:git:https://github.com/JetBrains/compose-jb.git", + "url": "https://github.com/JetBrains/compose-jb" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-compose", + "artifactVersion": "2.10.0", + "name": "Lifecycle ViewModel Compose", + "description": "Compose integration with Lifecycle ViewModel", + "website": "https://github.com/JetBrains/compose-jb", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "scm": { + "connection": "scm:git:https://github.com/JetBrains/compose-jb.git", + "developerConnection": "scm:git:https://github.com/JetBrains/compose-jb.git", + "url": "https://github.com/JetBrains/compose-jb" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-navigation3", + "artifactVersion": "2.10.0", + "name": "Androidx Lifecycle Navigation3 ViewModel", + "description": "Provides the ViewModel wrapper for nav3.", + "website": "https://github.com/JetBrains/compose-jb", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "scm": { + "connection": "scm:git:https://github.com/JetBrains/compose-jb.git", + "developerConnection": "scm:git:https://github.com/JetBrains/compose-jb.git", + "url": "https://github.com/JetBrains/compose-jb" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-savedstate", + "artifactVersion": "2.10.0", + "name": "Lifecycle ViewModel with SavedState", + "description": "Android Lifecycle ViewModel", + "website": "https://github.com/JetBrains/compose-jb", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "scm": { + "connection": "scm:git:https://github.com/JetBrains/compose-jb.git", + "developerConnection": "scm:git:https://github.com/JetBrains/compose-jb.git", + "url": "https://github.com/JetBrains/compose-jb" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "org.jetbrains.androidx.navigation3:navigation3-ui", + "artifactVersion": "1.1.0", + "name": "Androidx Navigation 3 UI", + "description": "Provides a Navigation3 display that uses the building blocks from runtime to create a higher level solution.", + "website": "https://github.com/JetBrains/compose-multiplatform", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "scm": { + "connection": "scm:git:https://github.com/JetBrains/compose-multiplatform.git", + "developerConnection": "scm:git:https://github.com/JetBrains/compose-multiplatform.git", + "url": "https://github.com/JetBrains/compose-multiplatform" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "org.jetbrains.androidx.navigationevent:navigationevent-compose", + "artifactVersion": "1.0.1", + "name": "NavigationEvent Compose", + "description": "Compose integration with NavigationEvent", + "website": "https://github.com/JetBrains/compose-jb", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "scm": { + "connection": "scm:git:https://github.com/JetBrains/compose-jb.git", + "developerConnection": "scm:git:https://github.com/JetBrains/compose-jb.git", + "url": "https://github.com/JetBrains/compose-jb" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "org.jetbrains.androidx.savedstate:savedstate", + "artifactVersion": "1.3.6", + "name": "Saved State", + "description": "Android Lifecycle Saved State", + "website": "https://github.com/JetBrains/compose-jb", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "scm": { + "connection": "scm:git:https://github.com/JetBrains/compose-jb.git", + "developerConnection": "scm:git:https://github.com/JetBrains/compose-jb.git", + "url": "https://github.com/JetBrains/compose-jb" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "org.jetbrains.androidx.savedstate:savedstate-compose", + "artifactVersion": "1.3.6", + "name": "Saved State Compose", + "description": "Compose integration with Saved State", + "website": "https://github.com/JetBrains/compose-jb", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "scm": { + "connection": "scm:git:https://github.com/JetBrains/compose-jb.git", + "developerConnection": "scm:git:https://github.com/JetBrains/compose-jb.git", + "url": "https://github.com/JetBrains/compose-jb" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "org.jetbrains.compose.animation:animation", + "artifactVersion": "1.11.0-beta03", + "name": "Compose Animation", + "description": "Compose animation library", + "website": "https://github.com/JetBrains/compose-multiplatform", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "scm": { + "connection": "scm:git:https://github.com/JetBrains/compose-multiplatform.git", + "developerConnection": "scm:git:https://github.com/JetBrains/compose-multiplatform.git", + "url": "https://github.com/JetBrains/compose-multiplatform" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "org.jetbrains.compose.animation:animation-core", + "artifactVersion": "1.11.0-beta03", + "name": "Compose Animation Core", + "description": "Animation engine and animation primitives that are the building blocks of the Compose animation library", + "website": "https://github.com/JetBrains/compose-multiplatform", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "scm": { + "connection": "scm:git:https://github.com/JetBrains/compose-multiplatform.git", + "developerConnection": "scm:git:https://github.com/JetBrains/compose-multiplatform.git", + "url": "https://github.com/JetBrains/compose-multiplatform" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "org.jetbrains.compose.annotation-internal:annotation", + "artifactVersion": "1.10.0", + "name": "Annotation", + "description": "Provides source annotations for tooling and readability.", + "website": "https://github.com/JetBrains/compose-jb", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "scm": { + "connection": "scm:git:https://github.com/JetBrains/compose-jb.git", + "developerConnection": "scm:git:https://github.com/JetBrains/compose-jb.git", + "url": "https://github.com/JetBrains/compose-jb" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "org.jetbrains.compose.collection-internal:collection", + "artifactVersion": "1.10.0", + "name": "collections", + "description": "Standalone efficient collections.", + "website": "https://github.com/JetBrains/compose-jb", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "scm": { + "connection": "scm:git:https://github.com/JetBrains/compose-jb.git", + "developerConnection": "scm:git:https://github.com/JetBrains/compose-jb.git", + "url": "https://github.com/JetBrains/compose-jb" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "org.jetbrains.compose.components:components-resources-android", + "artifactVersion": "1.11.0-beta03", + "name": "Resources for Compose JB", + "description": "Resources for Compose JB", + "website": "https://github.com/JetBrains/compose-multiplatform", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "scm": { + "connection": "scm:git:https://github.com/JetBrains/compose-multiplatform.git", + "developerConnection": "scm:git:https://github.com/JetBrains/compose-multiplatform.git", + "url": "https://github.com/JetBrains/compose-multiplatform" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "org.jetbrains.compose.desktop:desktop-jvm-linux-x64", + "artifactVersion": "1.11.0-beta03", + "name": "Compose Desktop", + "description": "Compose Desktop", + "website": "https://github.com/JetBrains/compose-multiplatform", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "scm": { + "connection": "scm:git:https://github.com/JetBrains/compose-multiplatform.git", + "developerConnection": "scm:git:https://github.com/JetBrains/compose-multiplatform.git", + "url": "https://github.com/JetBrains/compose-multiplatform" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "org.jetbrains.compose.foundation:foundation", + "artifactVersion": "1.11.0-beta03", + "name": "Compose Foundation", + "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", + "website": "https://github.com/JetBrains/compose-multiplatform", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "scm": { + "connection": "scm:git:https://github.com/JetBrains/compose-multiplatform.git", + "developerConnection": "scm:git:https://github.com/JetBrains/compose-multiplatform.git", + "url": "https://github.com/JetBrains/compose-multiplatform" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "org.jetbrains.compose.foundation:foundation-layout", + "artifactVersion": "1.11.0-beta03", + "name": "Compose Layouts", + "description": "Compose layout implementations", + "website": "https://github.com/JetBrains/compose-multiplatform", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "scm": { + "connection": "scm:git:https://github.com/JetBrains/compose-multiplatform.git", + "developerConnection": "scm:git:https://github.com/JetBrains/compose-multiplatform.git", + "url": "https://github.com/JetBrains/compose-multiplatform" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "org.jetbrains.compose.hot-reload:hot-reload-annotations-jvm", + "artifactVersion": "1.1.0-rc01", + "name": "hot-reload-annotations", + "description": "Compose Hot Reload implementation", + "website": "https://github.com/JetBrains/compose-hot-reload", + "developers": [ + { + "name": "JetBrains Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "scm": { + "url": "https://github.com/JetBrains/compose-hot-reload" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "org.jetbrains.compose.hot-reload:hot-reload-core", + "artifactVersion": "1.1.0-rc01", + "name": "hot-reload-core", + "description": "Compose Hot Reload implementation", + "website": "https://github.com/JetBrains/compose-hot-reload", + "developers": [ + { + "name": "JetBrains Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "scm": { + "url": "https://github.com/JetBrains/compose-hot-reload" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "org.jetbrains.compose.hot-reload:hot-reload-devtools-api", + "artifactVersion": "1.1.0-rc01", + "name": "hot-reload-devtools-api", + "description": "Compose Hot Reload implementation", + "website": "https://github.com/JetBrains/compose-hot-reload", + "developers": [ + { + "name": "JetBrains Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "scm": { + "url": "https://github.com/JetBrains/compose-hot-reload" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "org.jetbrains.compose.hot-reload:hot-reload-orchestration", + "artifactVersion": "1.1.0-rc01", + "name": "hot-reload-orchestration", + "description": "Compose Hot Reload implementation", + "website": "https://github.com/JetBrains/compose-hot-reload", + "developers": [ + { + "name": "JetBrains Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "scm": { + "url": "https://github.com/JetBrains/compose-hot-reload" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "org.jetbrains.compose.hot-reload:hot-reload-runtime-api-jvm", + "artifactVersion": "1.1.0-rc01", + "name": "hot-reload-runtime-api", + "description": "Compose Hot Reload implementation", + "website": "https://github.com/JetBrains/compose-hot-reload", + "developers": [ + { + "name": "JetBrains Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "scm": { + "url": "https://github.com/JetBrains/compose-hot-reload" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "org.jetbrains.compose.hot-reload:hot-reload-runtime-jvm", + "artifactVersion": "1.1.0-rc01", + "name": "hot-reload-runtime-jvm", + "description": "Compose Hot Reload implementation", + "website": "https://github.com/JetBrains/compose-hot-reload", + "developers": [ + { + "name": "JetBrains Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "scm": { + "url": "https://github.com/JetBrains/compose-hot-reload" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "org.jetbrains.compose.material3:material3", + "artifactVersion": "1.11.0-alpha07", + "name": "Compose Material3 Components", + "description": "Compose Material You Design Components library", + "website": "https://github.com/JetBrains/compose-multiplatform", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "scm": { + "connection": "scm:git:https://github.com/JetBrains/compose-multiplatform.git", + "developerConnection": "scm:git:https://github.com/JetBrains/compose-multiplatform.git", + "url": "https://github.com/JetBrains/compose-multiplatform" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "org.jetbrains.compose.material:material-desktop", + "artifactVersion": "1.11.0-beta03", + "name": "Compose Material Components", + "description": "Compose Material Design Components library", + "website": "https://github.com/JetBrains/compose-multiplatform", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "scm": { + "connection": "scm:git:https://github.com/JetBrains/compose-multiplatform.git", + "developerConnection": "scm:git:https://github.com/JetBrains/compose-multiplatform.git", + "url": "https://github.com/JetBrains/compose-multiplatform" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "org.jetbrains.compose.material:material-ripple", + "artifactVersion": "1.11.0-beta03", + "name": "Compose Material Ripple", + "description": "Material ripple used to build interactive components", + "website": "https://github.com/JetBrains/compose-multiplatform", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "scm": { + "connection": "scm:git:https://github.com/JetBrains/compose-multiplatform.git", + "developerConnection": "scm:git:https://github.com/JetBrains/compose-multiplatform.git", + "url": "https://github.com/JetBrains/compose-multiplatform" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "org.jetbrains.compose.runtime:runtime", + "artifactVersion": "1.11.0-beta03", + "name": "Compose Runtime", + "description": "Tree composition support for code generated by the Compose compiler plugin and corresponding public API", + "website": "https://github.com/JetBrains/compose-multiplatform", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "scm": { + "connection": "scm:git:https://github.com/JetBrains/compose-multiplatform.git", + "developerConnection": "scm:git:https://github.com/JetBrains/compose-multiplatform.git", + "url": "https://github.com/JetBrains/compose-multiplatform" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "org.jetbrains.compose.runtime:runtime-saveable", + "artifactVersion": "1.11.0-beta03", + "name": "Compose Saveable", + "description": "Compose components that allow saving and restoring the local ui state", + "website": "https://github.com/JetBrains/compose-multiplatform", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "scm": { + "connection": "scm:git:https://github.com/JetBrains/compose-multiplatform.git", + "developerConnection": "scm:git:https://github.com/JetBrains/compose-multiplatform.git", + "url": "https://github.com/JetBrains/compose-multiplatform" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "org.jetbrains.compose.ui:ui", + "artifactVersion": "1.11.0-beta03", + "name": "Compose UI", + "description": "Compose UI primitives. This library contains the primitives that form the Compose UI Toolkit, such as drawing, measurement and layout.", + "website": "https://github.com/JetBrains/compose-multiplatform", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "scm": { + "connection": "scm:git:https://github.com/JetBrains/compose-multiplatform.git", + "developerConnection": "scm:git:https://github.com/JetBrains/compose-multiplatform.git", + "url": "https://github.com/JetBrains/compose-multiplatform" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "org.jetbrains.compose.ui:ui-backhandler-desktop", + "artifactVersion": "1.11.0-beta03", + "name": "Compose BackHandler", + "description": "Provides BackHandler in Compose Multiplatform projects", + "website": "https://github.com/JetBrains/compose-multiplatform", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "scm": { + "connection": "scm:git:https://github.com/JetBrains/compose-multiplatform.git", + "developerConnection": "scm:git:https://github.com/JetBrains/compose-multiplatform.git", + "url": "https://github.com/JetBrains/compose-multiplatform" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "org.jetbrains.compose.ui:ui-geometry", + "artifactVersion": "1.11.0-beta03", + "name": "Compose Geometry", + "description": "Compose classes related to dimensions without units", + "website": "https://github.com/JetBrains/compose-multiplatform", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "scm": { + "connection": "scm:git:https://github.com/JetBrains/compose-multiplatform.git", + "developerConnection": "scm:git:https://github.com/JetBrains/compose-multiplatform.git", + "url": "https://github.com/JetBrains/compose-multiplatform" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "org.jetbrains.compose.ui:ui-graphics", + "artifactVersion": "1.11.0-beta03", + "name": "Compose Graphics", + "description": "Compose graphics", + "website": "https://github.com/JetBrains/compose-multiplatform", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "scm": { + "connection": "scm:git:https://github.com/JetBrains/compose-multiplatform.git", + "developerConnection": "scm:git:https://github.com/JetBrains/compose-multiplatform.git", + "url": "https://github.com/JetBrains/compose-multiplatform" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "org.jetbrains.compose.ui:ui-text", + "artifactVersion": "1.11.0-beta03", + "name": "Compose UI Text", + "description": "Compose Text primitives and utilities", + "website": "https://github.com/JetBrains/compose-multiplatform", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "scm": { + "connection": "scm:git:https://github.com/JetBrains/compose-multiplatform.git", + "developerConnection": "scm:git:https://github.com/JetBrains/compose-multiplatform.git", + "url": "https://github.com/JetBrains/compose-multiplatform" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "org.jetbrains.compose.ui:ui-tooling", + "artifactVersion": "1.11.0-beta03", + "name": "Compose Tooling", + "description": "Compose tooling library. This library exposes information to our tools for better IDE support.", + "website": "https://github.com/JetBrains/compose-multiplatform", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "scm": { + "connection": "scm:git:https://github.com/JetBrains/compose-multiplatform.git", + "developerConnection": "scm:git:https://github.com/JetBrains/compose-multiplatform.git", + "url": "https://github.com/JetBrains/compose-multiplatform" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "org.jetbrains.compose.ui:ui-tooling-data", + "artifactVersion": "1.11.0-beta03", + "name": "Compose Tooling Data", + "description": "Compose tooling library data. This library provides data about compose for different tooling purposes.", + "website": "https://github.com/JetBrains/compose-multiplatform", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "scm": { + "connection": "scm:git:https://github.com/JetBrains/compose-multiplatform.git", + "developerConnection": "scm:git:https://github.com/JetBrains/compose-multiplatform.git", + "url": "https://github.com/JetBrains/compose-multiplatform" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "org.jetbrains.compose.ui:ui-tooling-preview", + "artifactVersion": "1.11.0-beta03", + "name": "Compose UI Preview Tooling", + "description": "Compose tooling library API. This library provides the API required to declare @Preview composables in user apps.", + "website": "https://github.com/JetBrains/compose-multiplatform", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "scm": { + "connection": "scm:git:https://github.com/JetBrains/compose-multiplatform.git", + "developerConnection": "scm:git:https://github.com/JetBrains/compose-multiplatform.git", + "url": "https://github.com/JetBrains/compose-multiplatform" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "org.jetbrains.compose.ui:ui-uikit", + "artifactVersion": "1.11.0-beta03", + "name": "Compose UIKit", + "description": "Internal iOS UIKit utilities including Objective-C library.", + "website": "https://github.com/JetBrains/compose-multiplatform", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "scm": { + "connection": "scm:git:https://github.com/JetBrains/compose-multiplatform.git", + "developerConnection": "scm:git:https://github.com/JetBrains/compose-multiplatform.git", + "url": "https://github.com/JetBrains/compose-multiplatform" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "org.jetbrains.compose.ui:ui-unit", + "artifactVersion": "1.11.0-beta03", + "name": "Compose Unit", + "description": "Compose classes for simple units", + "website": "https://github.com/JetBrains/compose-multiplatform", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "scm": { + "connection": "scm:git:https://github.com/JetBrains/compose-multiplatform.git", + "developerConnection": "scm:git:https://github.com/JetBrains/compose-multiplatform.git", + "url": "https://github.com/JetBrains/compose-multiplatform" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "org.jetbrains.compose.ui:ui-util", + "artifactVersion": "1.11.0-beta03", + "name": "Compose Util", + "description": "Internal Compose utilities used by other modules", + "website": "https://github.com/JetBrains/compose-multiplatform", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "scm": { + "connection": "scm:git:https://github.com/JetBrains/compose-multiplatform.git", + "developerConnection": "scm:git:https://github.com/JetBrains/compose-multiplatform.git", + "url": "https://github.com/JetBrains/compose-multiplatform" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "org.jetbrains.kotlin:kotlin-stdlib", + "artifactVersion": "2.3.21", + "name": "Kotlin Stdlib", + "description": "Kotlin Standard Library", + "website": "https://kotlinlang.org/", + "developers": [ + { + "name": "Kotlin Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "scm": { + "connection": "scm:git:https://github.com/JetBrains/kotlin.git", + "developerConnection": "scm:git:https://github.com/JetBrains/kotlin.git", + "url": "https://github.com/JetBrains/kotlin" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "org.jetbrains.kotlinx:atomicfu-jvm", + "artifactVersion": "0.28.0", + "name": "atomicfu", + "description": "AtomicFU utilities", + "website": "https://github.com/Kotlin/kotlinx.atomicfu", + "developers": [ + { + "name": "JetBrains Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "scm": { + "url": "https://github.com/Kotlin/kotlinx.atomicfu" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "org.jetbrains.kotlinx:kotlinx-browser", + "artifactVersion": "0.5.0", + "name": "kotlinx-browser", + "description": "Kotlinx Browser", + "website": "https://github.com/Kotlin/kotlinx-browser", + "developers": [ + { + "name": "JetBrains Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "scm": { + "url": "https://github.com/Kotlin/kotlinx-browser" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "org.jetbrains.kotlinx:kotlinx-coroutines-android", + "artifactVersion": "1.9.0", + "name": "kotlinx-coroutines-android", + "description": "Coroutines support libraries for Kotlin", + "website": "https://github.com/Kotlin/kotlinx.coroutines", + "developers": [ + { + "name": "JetBrains Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "scm": { + "url": "https://github.com/Kotlin/kotlinx.coroutines" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "org.jetbrains.kotlinx:kotlinx-coroutines-bom", + "artifactVersion": "1.9.0", + "name": "kotlinx-coroutines-bom", + "description": "Coroutines support libraries for Kotlin", + "website": "https://github.com/Kotlin/kotlinx.coroutines", + "developers": [ + { + "name": "JetBrains Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "scm": { + "url": "https://github.com/Kotlin/kotlinx.coroutines" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm", + "artifactVersion": "1.9.0", + "name": "kotlinx-coroutines-core", + "description": "Coroutines support libraries for Kotlin", + "website": "https://github.com/Kotlin/kotlinx.coroutines", + "developers": [ + { + "name": "JetBrains Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "scm": { + "url": "https://github.com/Kotlin/kotlinx.coroutines" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "org.jetbrains.kotlinx:kotlinx-coroutines-swing", + "artifactVersion": "1.10.2", + "name": "kotlinx-coroutines-swing", + "description": "Coroutines support libraries for Kotlin", + "website": "https://github.com/Kotlin/kotlinx.coroutines", + "developers": [ + { + "name": "JetBrains Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "scm": { + "url": "https://github.com/Kotlin/kotlinx.coroutines" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "org.jetbrains.kotlinx:kotlinx-datetime-jvm", + "artifactVersion": "0.7.1", + "name": "kotlinx-datetime", + "description": "Kotlin Datetime Library", + "website": "https://github.com/Kotlin/kotlinx-datetime", + "developers": [ + { + "name": "JetBrains Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "scm": { + "url": "https://github.com/Kotlin/kotlinx-datetime" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "org.jetbrains.kotlinx:kotlinx-serialization-bom", + "artifactVersion": "1.11.0", + "name": "kotlinx-serialization-bom", + "description": "Kotlin multiplatform serialization runtime library", + "website": "https://github.com/Kotlin/kotlinx.serialization", + "developers": [ + { + "name": "JetBrains Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "scm": { + "url": "https://github.com/Kotlin/kotlinx.serialization" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "org.jetbrains.kotlinx:kotlinx-serialization-core-jvm", + "artifactVersion": "1.11.0", + "name": "kotlinx-serialization-core", + "description": "Kotlin multiplatform serialization runtime library", + "website": "https://github.com/Kotlin/kotlinx.serialization", + "developers": [ + { + "name": "JetBrains Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "scm": { + "url": "https://github.com/Kotlin/kotlinx.serialization" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "org.jetbrains.kotlinx:kotlinx-serialization-json-jvm", + "artifactVersion": "1.11.0", + "name": "kotlinx-serialization-json", + "description": "Kotlin multiplatform serialization runtime library", + "website": "https://github.com/Kotlin/kotlinx.serialization", + "developers": [ + { + "name": "JetBrains Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "scm": { + "url": "https://github.com/Kotlin/kotlinx.serialization" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "org.jetbrains.runtime:jbr-api", + "artifactVersion": "1.9.0", + "name": "jbr-api", + "description": "Interface for the functionality specific to https://github.com/JetBrains/JetBrainsRuntime", + "website": "https://github.com/JetBrains/JetBrainsRuntimeApi", + "developers": [ + { + "name": "Nikita Gubarkov", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "scm": { + "connection": "scm:git:git@github.com:JetBrains/JetBrainsRuntimeApi.git", + "url": "https://github.com/JetBrains/JetBrainsRuntimeApi" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "org.jetbrains.skiko:skiko", + "artifactVersion": "0.144.5", + "name": "Skiko KMP", + "description": "Kotlin Skia bindings", + "website": "https://www.github.com/JetBrains/skiko", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "scm": { + "connection": "scm:git:https://www.github.com/JetBrains/skiko.git", + "developerConnection": "scm:git:https://www.github.com/JetBrains/skiko.git", + "url": "https://www.github.com/JetBrains/skiko" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "org.jetbrains.skiko:skiko-awt", + "artifactVersion": "0.144.5", + "name": "Skiko Awt", + "description": "Kotlin Skia bindings", + "website": "https://www.github.com/JetBrains/skiko", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "scm": { + "connection": "scm:git:https://www.github.com/JetBrains/skiko.git", + "developerConnection": "scm:git:https://www.github.com/JetBrains/skiko.git", + "url": "https://www.github.com/JetBrains/skiko" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "org.jetbrains.skiko:skiko-awt-runtime-linux-x64", + "artifactVersion": "0.144.5", + "name": "Skiko JVM Runtime for Linux X64", + "description": "Kotlin Skia bindings", + "website": "https://www.github.com/JetBrains/skiko", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "scm": { + "connection": "scm:git:https://www.github.com/JetBrains/skiko.git", + "developerConnection": "scm:git:https://www.github.com/JetBrains/skiko.git", + "url": "https://www.github.com/JetBrains/skiko" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "org.jetbrains:annotations", + "artifactVersion": "23.0.0", + "name": "JetBrains Java Annotations", + "description": "A set of annotations used for code inspection support and code documentation.", + "website": "https://github.com/JetBrains/java-annotations", + "developers": [ + { + "name": "JetBrains Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "scm": { + "connection": "scm:git:git://github.com/JetBrains/java-annotations.git", + "developerConnection": "scm:git:ssh://github.com:JetBrains/java-annotations.git", + "url": "https://github.com/JetBrains/java-annotations" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + }, + { + "uniqueId": "org.jspecify:jspecify", + "artifactVersion": "1.0.0", + "name": "JSpecify annotations", + "description": "An artifact of well-named and well-specified annotations to power static analysis checks", + "website": "http://jspecify.org/", + "developers": [ + { + "name": "Kevin Bourrillion" + } + ], + "scm": { + "connection": "scm:git:git@github.com:jspecify/jspecify.git", + "developerConnection": "scm:git:git@github.com:jspecify/jspecify.git", + "url": "https://github.com/jspecify/jspecify/" + }, + "licenses": [ + "Apache-2.0" + ], + "funding": [ + + ] + } + ], + "licenses": { + "Apache-2.0": { + "name": "Apache License 2.0", + "url": "https://spdx.org/licenses/Apache-2.0.html", + "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.", + "internalHash": "Apache-2.0", + "spdxId": "Apache-2.0", + "hash": "Apache-2.0" + } + } +} \ No newline at end of file diff --git a/composeApp/src/commonMain/composeResources/files/keep.xml b/composeApp/src/commonMain/composeResources/files/keep.xml new file mode 100644 index 000000000..b0587ff7e --- /dev/null +++ b/composeApp/src/commonMain/composeResources/files/keep.xml @@ -0,0 +1,7 @@ + + + diff --git a/composeApp/src/commonMain/composeResources/values/strings.xml b/composeApp/src/commonMain/composeResources/values/strings.xml index db4b09e00..afa07b9ba 100644 --- a/composeApp/src/commonMain/composeResources/values/strings.xml +++ b/composeApp/src/commonMain/composeResources/values/strings.xml @@ -5,4 +5,33 @@ --> NewPipe + + + Back + + + About NewPipe + Third-party Licenses + © %1$s by %2$s under %3$s + About \u0026 FAQ + Licenses + Libre lightweight streaming on Android. + Contribute + Whether you have ideas of; translation, design changes, code cleaning, or real heavy code changes—help is always welcome. The more is done the better it gets! + View on GitHub + Donate + NewPipe is developed by volunteers spending their free time bringing you the best user experience. Give back to help developers make NewPipe even better while they enjoy a cup of coffee. + Give back + Website + Visit the NewPipe Website for more info and news. + NewPipe\'s Privacy Policy + The NewPipe project takes your privacy very seriously. Therefore, the app does not collect any data without your consent.\nNewPipe\'s privacy policy explains in detail what data is sent and stored when you send a crash report. + Read privacy policy + NewPipe\'s License + NewPipe is copyleft libre software: You can use, study, share, and improve it at will. Specifically you can redistribute and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. + Read license + Frequently asked questions + If you are having trouble using the app, be sure to check out these answers to common questions! + View on website + Open in browser diff --git a/composeApp/src/commonMain/kotlin/net/newpipe/app/App.kt b/composeApp/src/commonMain/kotlin/net/newpipe/app/App.kt index b1d9020c4..85e53605a 100644 --- a/composeApp/src/commonMain/kotlin/net/newpipe/app/App.kt +++ b/composeApp/src/commonMain/kotlin/net/newpipe/app/App.kt @@ -7,6 +7,7 @@ package net.newpipe.app import androidx.compose.runtime.Composable import net.newpipe.app.di.KoinApp +import net.newpipe.app.navigation.NavDisplay import net.newpipe.app.navigation.Screen import net.newpipe.app.theme.AppTheme import org.koin.compose.KoinApplication @@ -14,11 +15,13 @@ import org.koin.plugin.module.dsl.koinConfiguration /** * Entry point for the multiplatform compose application + * @param startDestination Starting destination for the activity/app, defaults to about */ @Composable -fun App(startDestination: Screen? = null) { +fun App(startDestination: Screen = Screen.About) { KoinApplication(configuration = koinConfiguration()) { AppTheme { + NavDisplay(startDestination) } } } diff --git a/composeApp/src/commonMain/kotlin/net/newpipe/app/Constants.kt b/composeApp/src/commonMain/kotlin/net/newpipe/app/Constants.kt new file mode 100644 index 000000000..41e4dea52 --- /dev/null +++ b/composeApp/src/commonMain/kotlin/net/newpipe/app/Constants.kt @@ -0,0 +1,19 @@ +/* + * SPDX-FileCopyrightText: 2026 NewPipe e.V. + * SPDX-License-Identifier: GPL-3.0-or-later + */ + +package net.newpipe.app + +object Constants { + + const val URL_GITHUB = "https://github.com/TeamNewPipe/NewPipe" + const val URL_DONATION = "https://newpipe.net/donate/" + const val URL_WEBSITE = "https://newpipe.net/" + const val URL_PRIVACY = "https://newpipe.net/legal/privacy/" + const val URL_FAQ = "https://newpipe.net/FAQ/" + const val URL_LICENSE = "https://github.com/TeamNewPipe/NewPipe/blob/master/LICENSE" + + // TODO: CHANGE IT TO RESPECT THE MAIN APP MODULE + const val CODE_VERSION = "1.0.0" +} diff --git a/composeApp/src/commonMain/kotlin/net/newpipe/app/composable/TopAppBar.kt b/composeApp/src/commonMain/kotlin/net/newpipe/app/composable/TopAppBar.kt new file mode 100644 index 000000000..7a18fc713 --- /dev/null +++ b/composeApp/src/commonMain/kotlin/net/newpipe/app/composable/TopAppBar.kt @@ -0,0 +1,76 @@ +/* + * SPDX-FileCopyrightText: 2026 NewPipe e.V. + * SPDX-License-Identifier: GPL-3.0-or-later + */ + +package net.newpipe.app.composable + +import androidx.compose.foundation.layout.RowScope +import androidx.compose.material3.Icon +import androidx.compose.material3.IconButton +import androidx.compose.material3.MaterialTheme +import androidx.compose.material3.Text +import androidx.compose.material3.TopAppBar +import androidx.compose.material3.TopAppBarDefaults +import androidx.compose.runtime.Composable +import androidx.compose.ui.Modifier +import androidx.compose.ui.graphics.painter.Painter +import androidx.compose.ui.tooling.preview.Preview +import androidx.compose.ui.tooling.preview.PreviewWrapper +import net.newpipe.app.preview.ThemePreviewProvider +import newpipe.composeapp.generated.resources.Res +import newpipe.composeapp.generated.resources.ic_arrow_back +import newpipe.composeapp.generated.resources.navigate_back +import newpipe.composeapp.generated.resources.title_activity_about +import org.jetbrains.compose.resources.painterResource +import org.jetbrains.compose.resources.stringResource + +/** + * A top app bar composable to be used with Scaffold + * @param modifier The modifier to be applied to the composable + * @param title Title of the screen + * @param navigationIcon Icon for the navigation button + * @param onNavigateUp Action when user clicks the navigation icon + * @param actions Actions to display on the top app bar (for e.g. menu) + */ +@Composable +fun TopAppBar( + modifier: Modifier = Modifier, + title: String? = null, + navigationIcon: Painter = painterResource(Res.drawable.ic_arrow_back), + onNavigateUp: (() -> Unit)? = null, + actions: @Composable (RowScope.() -> Unit) = {} +) { + TopAppBar( + modifier = modifier, + colors = TopAppBarDefaults.topAppBarColors( + containerColor = MaterialTheme.colorScheme.primaryContainer, + scrolledContainerColor = MaterialTheme.colorScheme.primaryContainer, + navigationIconContentColor = MaterialTheme.colorScheme.onPrimaryContainer, + titleContentColor = MaterialTheme.colorScheme.onPrimaryContainer, + actionIconContentColor = MaterialTheme.colorScheme.onPrimaryContainer + ), + title = { if (title != null) Text(text = title) }, + navigationIcon = { + if (onNavigateUp != null) { + IconButton(onClick = onNavigateUp) { + Icon( + painter = navigationIcon, + contentDescription = stringResource(Res.string.navigate_back) + ) + } + } + }, + actions = actions + ) +} + +@PreviewWrapper(ThemePreviewProvider::class) +@Preview(showBackground = true) +@Composable +private fun TopAppBarPreview() { + TopAppBar( + title = stringResource(Res.string.title_activity_about), + onNavigateUp = {} + ) +} diff --git a/composeApp/src/commonMain/kotlin/net/newpipe/app/composable/about/LinkListItem.kt b/composeApp/src/commonMain/kotlin/net/newpipe/app/composable/about/LinkListItem.kt new file mode 100644 index 000000000..463c8da4b --- /dev/null +++ b/composeApp/src/commonMain/kotlin/net/newpipe/app/composable/about/LinkListItem.kt @@ -0,0 +1,73 @@ +/* + * SPDX-FileCopyrightText: 2026 NewPipe e.V. + * SPDX-License-Identifier: GPL-3.0-or-later + */ + +package net.newpipe.app.composable.about + +import androidx.compose.foundation.layout.Column +import androidx.compose.foundation.layout.fillMaxWidth +import androidx.compose.foundation.layout.padding +import androidx.compose.foundation.layout.wrapContentWidth +import androidx.compose.material3.MaterialTheme +import androidx.compose.material3.Text +import androidx.compose.material3.TextButton +import androidx.compose.runtime.Composable +import androidx.compose.ui.Alignment +import androidx.compose.ui.Modifier +import androidx.compose.ui.tooling.preview.Preview +import androidx.compose.ui.tooling.preview.PreviewWrapper +import net.newpipe.app.model.Link +import net.newpipe.app.preview.ThemePreviewProvider +import net.newpipe.app.theme.spaceXSmall +import newpipe.composeapp.generated.resources.Res +import newpipe.composeapp.generated.resources.contribution_encouragement +import newpipe.composeapp.generated.resources.contribution_title +import newpipe.composeapp.generated.resources.view_on_github +import org.jetbrains.compose.resources.stringResource + +/** + * Composable to display item providing information about NewPipe + * @param link A link item with information + * @param onAction Callback when the action button is clicked + */ +@Composable +fun LinkListItem(modifier: Modifier = Modifier, link: Link, onAction: () -> Unit = {}) { + Column( + modifier = modifier + .fillMaxWidth() + .padding(spaceXSmall) + ) { + Text( + text = stringResource(link.title), + style = MaterialTheme.typography.titleMedium + ) + Text( + text = stringResource(link.description), + style = MaterialTheme.typography.bodyMedium + ) + + TextButton( + modifier = Modifier + .fillMaxWidth() + .wrapContentWidth(Alignment.End), + onClick = onAction + ) { + Text(text = stringResource(link.action)) + } + } +} + +@PreviewWrapper(ThemePreviewProvider::class) +@Preview(showBackground = true) +@Composable +private fun LinkListItemPreview() { + LinkListItem( + link = Link( + Res.string.contribution_title, + Res.string.contribution_encouragement, + Res.string.view_on_github, + "" + ) + ) +} diff --git a/composeApp/src/commonMain/kotlin/net/newpipe/app/model/Link.kt b/composeApp/src/commonMain/kotlin/net/newpipe/app/model/Link.kt new file mode 100644 index 000000000..d7eeb3026 --- /dev/null +++ b/composeApp/src/commonMain/kotlin/net/newpipe/app/model/Link.kt @@ -0,0 +1,18 @@ +/* + * SPDX-FileCopyrightText: 2026 NewPipe e.V. + * SPDX-License-Identifier: GPL-3.0-or-later + */ + +package net.newpipe.app.model + +import org.jetbrains.compose.resources.StringResource + +/** + * Class to hold data for links shown to users + */ +data class Link( + val title: StringResource, + val description: StringResource, + val action: StringResource, + val url: String +) diff --git a/composeApp/src/commonMain/kotlin/net/newpipe/app/navigation/NavDisplay.kt b/composeApp/src/commonMain/kotlin/net/newpipe/app/navigation/NavDisplay.kt index da1387eff..ba1d98d26 100644 --- a/composeApp/src/commonMain/kotlin/net/newpipe/app/navigation/NavDisplay.kt +++ b/composeApp/src/commonMain/kotlin/net/newpipe/app/navigation/NavDisplay.kt @@ -9,10 +9,11 @@ import androidx.compose.runtime.Composable import androidx.navigation3.runtime.entryProvider import androidx.navigation3.runtime.rememberNavBackStack import androidx.navigation3.ui.NavDisplay +import net.newpipe.app.screen.about.AboutScreen /** * Navigation display for compose screens - * @param startDestination Starting destination for the activity/app, defaults to about + * @param startDestination Starting destination for the app */ @Composable fun NavDisplay(startDestination: Screen) { @@ -21,6 +22,11 @@ fun NavDisplay(startDestination: Screen) { NavDisplay( backStack = backstack, entryProvider = entryProvider { + entry { + AboutScreen( + onNavigateUp = {} + ) + } } ) } diff --git a/composeApp/src/commonMain/kotlin/net/newpipe/app/navigation/Screen.kt b/composeApp/src/commonMain/kotlin/net/newpipe/app/navigation/Screen.kt index e6ce33c4a..f1be64927 100644 --- a/composeApp/src/commonMain/kotlin/net/newpipe/app/navigation/Screen.kt +++ b/composeApp/src/commonMain/kotlin/net/newpipe/app/navigation/Screen.kt @@ -18,8 +18,8 @@ import kotlinx.serialization.modules.polymorphic @Serializable sealed interface Screen : NavKey { - val name: String - get() = this::class.simpleName.toString() + @Serializable + data object About : Screen } /** diff --git a/composeApp/src/commonMain/kotlin/net/newpipe/app/preview/ThemePreviewProvider.kt b/composeApp/src/commonMain/kotlin/net/newpipe/app/preview/ThemePreviewProvider.kt new file mode 100644 index 000000000..8aa77612c --- /dev/null +++ b/composeApp/src/commonMain/kotlin/net/newpipe/app/preview/ThemePreviewProvider.kt @@ -0,0 +1,21 @@ +/* + * SPDX-FileCopyrightText: 2026 NewPipe e.V. + * SPDX-License-Identifier: GPL-3.0-or-later + */ + +package net.newpipe.app.preview + +import androidx.compose.runtime.Composable +import androidx.compose.ui.tooling.preview.PreviewWrapperProvider +import net.newpipe.app.theme.AppTheme + +/** + * Default preview provider for composables + */ +class ThemePreviewProvider : PreviewWrapperProvider { + + @Composable + override fun Wrap(content: @Composable (() -> Unit)) { + AppTheme(content = content) + } +} diff --git a/composeApp/src/commonMain/kotlin/net/newpipe/app/screen/about/AboutPage.kt b/composeApp/src/commonMain/kotlin/net/newpipe/app/screen/about/AboutPage.kt new file mode 100644 index 000000000..3ea2b4371 --- /dev/null +++ b/composeApp/src/commonMain/kotlin/net/newpipe/app/screen/about/AboutPage.kt @@ -0,0 +1,152 @@ +/* + * SPDX-FileCopyrightText: 2026 NewPipe e.V. + * SPDX-License-Identifier: GPL-3.0-or-later + */ + +package net.newpipe.app.screen.about + +import androidx.compose.foundation.Image +import androidx.compose.foundation.background +import androidx.compose.foundation.layout.Arrangement +import androidx.compose.foundation.layout.Column +import androidx.compose.foundation.layout.PaddingValues +import androidx.compose.foundation.layout.Spacer +import androidx.compose.foundation.layout.fillMaxWidth +import androidx.compose.foundation.layout.height +import androidx.compose.foundation.layout.padding +import androidx.compose.foundation.layout.requiredSize +import androidx.compose.foundation.lazy.LazyColumn +import androidx.compose.foundation.lazy.items +import androidx.compose.foundation.shape.CircleShape +import androidx.compose.material3.MaterialTheme +import androidx.compose.material3.Text +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.text.style.TextAlign +import androidx.compose.ui.tooling.preview.Preview +import androidx.compose.ui.tooling.preview.PreviewWrapper +import net.newpipe.app.Constants +import net.newpipe.app.composable.about.LinkListItem +import net.newpipe.app.model.Link +import net.newpipe.app.preview.ThemePreviewProvider +import net.newpipe.app.theme.iconTVDPI +import net.newpipe.app.theme.logoBackground +import net.newpipe.app.theme.spaceLarge +import net.newpipe.app.theme.spaceNormal +import net.newpipe.app.theme.spaceXSmall +import net.newpipe.app.theme.spaceXXSmall +import newpipe.composeapp.generated.resources.Res +import newpipe.composeapp.generated.resources.app_description +import newpipe.composeapp.generated.resources.app_name +import newpipe.composeapp.generated.resources.contribution_encouragement +import newpipe.composeapp.generated.resources.contribution_title +import newpipe.composeapp.generated.resources.donation_encouragement +import newpipe.composeapp.generated.resources.donation_title +import newpipe.composeapp.generated.resources.faq +import newpipe.composeapp.generated.resources.faq_description +import newpipe.composeapp.generated.resources.faq_title +import newpipe.composeapp.generated.resources.give_back +import newpipe.composeapp.generated.resources.ic_foreground +import newpipe.composeapp.generated.resources.open_in_browser +import newpipe.composeapp.generated.resources.privacy_policy_encouragement +import newpipe.composeapp.generated.resources.privacy_policy_title +import newpipe.composeapp.generated.resources.read_privacy_policy +import newpipe.composeapp.generated.resources.view_on_github +import newpipe.composeapp.generated.resources.website_encouragement +import newpipe.composeapp.generated.resources.website_title +import org.jetbrains.compose.resources.painterResource +import org.jetbrains.compose.resources.stringResource + +@Composable +fun AboutPage() { + val links = listOf( + Link( + title = Res.string.faq_title, + description = Res.string.faq_description, + action = Res.string.faq, + url = Constants.URL_FAQ + ), + Link( + title = Res.string.contribution_title, + description = Res.string.contribution_encouragement, + action = Res.string.view_on_github, + url = Constants.URL_GITHUB + ), + Link( + title = Res.string.donation_title, + description = Res.string.donation_encouragement, + action = Res.string.give_back, + url = Constants.URL_DONATION + ), + Link( + title = Res.string.website_title, + description = Res.string.website_encouragement, + action = Res.string.open_in_browser, + url = Constants.URL_WEBSITE + ), + Link( + title = Res.string.privacy_policy_title, + description = Res.string.privacy_policy_encouragement, + action = Res.string.read_privacy_policy, + url = Constants.URL_PRIVACY + ) + ) + + LazyColumn( + modifier = Modifier.fillMaxWidth(), + contentPadding = PaddingValues(spaceNormal), + verticalArrangement = Arrangement.spacedBy(spaceXXSmall) + ) { + item { PageHeader() } + + items(items = links, key = { link -> link.url }) { link -> + LinkListItem( + link = link + ) + } + } +} + +@Composable +private fun PageHeader() { + Column( + modifier = Modifier + .padding(spaceLarge) + .fillMaxWidth(), + horizontalAlignment = Alignment.CenterHorizontally + ) { + Image( + modifier = Modifier + .requiredSize(iconTVDPI) + .clip(CircleShape) + .background(color = logoBackground), + painter = painterResource(Res.drawable.ic_foreground), + contentDescription = stringResource(Res.string.app_name), + ) + Spacer(modifier = Modifier.height(spaceXSmall)) + Text( + text = stringResource(Res.string.app_name), + style = MaterialTheme.typography.titleLarge, + textAlign = TextAlign.Center + ) + Text( + text = Constants.CODE_VERSION, + style = MaterialTheme.typography.titleMedium, + textAlign = TextAlign.Center + ) + Text( + modifier = Modifier.fillMaxWidth(), + text = stringResource(Res.string.app_description), + textAlign = TextAlign.Center + ) + } +} + +@PreviewWrapper(ThemePreviewProvider::class) +@Preview(showBackground = true) +@Composable +private fun AboutPagePreview() { + AboutPage() +} diff --git a/composeApp/src/commonMain/kotlin/net/newpipe/app/screen/about/AboutScreen.kt b/composeApp/src/commonMain/kotlin/net/newpipe/app/screen/about/AboutScreen.kt new file mode 100644 index 000000000..b2c6d0530 --- /dev/null +++ b/composeApp/src/commonMain/kotlin/net/newpipe/app/screen/about/AboutScreen.kt @@ -0,0 +1,94 @@ +/* + * SPDX-FileCopyrightText: 2026 NewPipe e.V. + * SPDX-License-Identifier: GPL-3.0-or-later + */ + +package net.newpipe.app.screen.about + +import androidx.compose.foundation.layout.Column +import androidx.compose.foundation.layout.fillMaxSize +import androidx.compose.foundation.layout.fillMaxWidth +import androidx.compose.foundation.layout.padding +import androidx.compose.foundation.pager.HorizontalPager +import androidx.compose.foundation.pager.rememberPagerState +import androidx.compose.material3.MaterialTheme +import androidx.compose.material3.Scaffold +import androidx.compose.material3.SecondaryTabRow +import androidx.compose.material3.Tab +import androidx.compose.material3.Text +import androidx.compose.runtime.Composable +import androidx.compose.runtime.rememberCoroutineScope +import androidx.compose.ui.Modifier +import androidx.compose.ui.tooling.preview.Preview +import androidx.compose.ui.tooling.preview.PreviewWrapper +import androidx.compose.ui.util.fastForEachIndexed +import kotlinx.coroutines.launch +import net.newpipe.app.composable.TopAppBar +import net.newpipe.app.preview.ThemePreviewProvider +import org.jetbrains.compose.resources.stringResource +import net.newpipe.app.screen.about.navigation.Page +import newpipe.composeapp.generated.resources.Res +import newpipe.composeapp.generated.resources.title_activity_about + +@Composable +fun AboutScreen(onNavigateUp: () -> Unit) { + ScreenContent( + onNavigateUp = onNavigateUp + ) +} + +@Composable +private fun ScreenContent( + pages: List = listOf(Page.ABOUT, Page.LICENSE), + onNavigateUp: () -> Unit = {} +) { + Scaffold( + topBar = { + TopAppBar( + title = stringResource(Res.string.title_activity_about), + onNavigateUp = onNavigateUp + ) + } + ) { paddingValues -> + Column( + modifier = Modifier + .fillMaxSize() + .padding(paddingValues) + ) { + val pagerState = rememberPagerState { pages.size } + val coroutineScope = rememberCoroutineScope() + + SecondaryTabRow( + modifier = Modifier.fillMaxWidth(), + containerColor = MaterialTheme.colorScheme.primaryContainer, + selectedTabIndex = pagerState.currentPage + ) { + pages.fastForEachIndexed { index, _ -> + Tab( + selected = pagerState.currentPage == index, + text = { Text(text = stringResource(pages[index].localizedTitle)) }, + onClick = { + coroutineScope.launch { + pagerState.animateScrollToPage(index) + } + } + ) + } + } + + HorizontalPager(state = pagerState, modifier = Modifier.fillMaxSize()) { page -> + when (pages[page]) { + Page.ABOUT -> AboutPage() + Page.LICENSE -> LicensePage() + } + } + } + } +} + +@PreviewWrapper(ThemePreviewProvider::class) +@Preview +@Composable +private fun AboutScreenPreview() { + ScreenContent() +} diff --git a/composeApp/src/commonMain/kotlin/net/newpipe/app/screen/about/LicensePage.kt b/composeApp/src/commonMain/kotlin/net/newpipe/app/screen/about/LicensePage.kt new file mode 100644 index 000000000..d6e00d0fe --- /dev/null +++ b/composeApp/src/commonMain/kotlin/net/newpipe/app/screen/about/LicensePage.kt @@ -0,0 +1,80 @@ +/* + * SPDX-FileCopyrightText: 2026 NewPipe e.V. + * SPDX-License-Identifier: GPL-3.0-or-later + */ + +package net.newpipe.app.screen.about + +import androidx.compose.foundation.layout.Arrangement +import androidx.compose.foundation.layout.Column +import androidx.compose.foundation.layout.fillMaxSize +import androidx.compose.foundation.layout.fillMaxWidth +import androidx.compose.foundation.layout.padding +import androidx.compose.material3.MaterialTheme +import androidx.compose.material3.Text +import androidx.compose.runtime.Composable +import androidx.compose.runtime.getValue +import androidx.compose.ui.Modifier +import androidx.compose.ui.tooling.preview.Preview +import androidx.compose.ui.tooling.preview.PreviewWrapper +import com.mikepenz.aboutlibraries.ui.compose.LibraryDefaults +import com.mikepenz.aboutlibraries.ui.compose.m3.LibrariesContainer +import com.mikepenz.aboutlibraries.ui.compose.produceLibraries +import net.newpipe.app.Constants +import net.newpipe.app.composable.about.LinkListItem +import net.newpipe.app.model.Link +import net.newpipe.app.preview.ThemePreviewProvider +import net.newpipe.app.theme.spaceXSmall +import newpipe.composeapp.generated.resources.Res +import newpipe.composeapp.generated.resources.app_license +import newpipe.composeapp.generated.resources.app_license_title +import newpipe.composeapp.generated.resources.read_full_license +import newpipe.composeapp.generated.resources.title_licenses +import org.jetbrains.compose.resources.stringResource + +@Composable +fun LicensePage() { + val libraries by produceLibraries { + Res.readBytes("files/aboutlibraries.json").decodeToString() + } + + LibrariesContainer( + modifier = Modifier.fillMaxSize(), + showDescription = true, + libraries = libraries, + header = { + item { PageHeader() } + } + ) +} + +@Composable +private fun PageHeader() { + Column( + modifier = Modifier + .fillMaxWidth() + .padding(LibraryDefaults.libraryPadding().contentPadding), + verticalArrangement = Arrangement.spacedBy(spaceXSmall) + ) { + LinkListItem( + link = Link( + title = Res.string.app_license_title, + description = Res.string.app_license, + action = Res.string.read_full_license, + url = Constants.URL_LICENSE + ) + ) + + Text( + text = stringResource(Res.string.title_licenses), + style = MaterialTheme.typography.titleMedium + ) + } +} + +@PreviewWrapper(ThemePreviewProvider::class) +@Preview(showBackground = true) +@Composable +private fun LicensePagePreview() { + LicensePage() +} diff --git a/composeApp/src/commonMain/kotlin/net/newpipe/app/screen/about/navigation/Page.kt b/composeApp/src/commonMain/kotlin/net/newpipe/app/screen/about/navigation/Page.kt new file mode 100644 index 000000000..8208b1253 --- /dev/null +++ b/composeApp/src/commonMain/kotlin/net/newpipe/app/screen/about/navigation/Page.kt @@ -0,0 +1,19 @@ +/* + * SPDX-FileCopyrightText: 2026 NewPipe e.V. + * SPDX-License-Identifier: GPL-3.0-or-later + */ + +package net.newpipe.app.screen.about.navigation + +import newpipe.composeapp.generated.resources.Res +import newpipe.composeapp.generated.resources.tab_about +import newpipe.composeapp.generated.resources.tab_licenses +import org.jetbrains.compose.resources.StringResource + +/** + * Possible pages to show in about screen + */ +enum class Page(val localizedTitle: StringResource) { + ABOUT(Res.string.tab_about), + LICENSE(Res.string.tab_licenses) +} diff --git a/composeApp/src/commonMain/kotlin/net/newpipe/app/theme/Color.kt b/composeApp/src/commonMain/kotlin/net/newpipe/app/theme/Color.kt index 5bb59ee2e..ad51d7b7d 100644 --- a/composeApp/src/commonMain/kotlin/net/newpipe/app/theme/Color.kt +++ b/composeApp/src/commonMain/kotlin/net/newpipe/app/theme/Color.kt @@ -8,6 +8,8 @@ package net.newpipe.app.theme import androidx.compose.ui.graphics.Color +val logoBackground = Color(0xFFCD201F) + val primaryLight = Color(0xFF904A45) val onPrimaryLight = Color(0xFFFFFFFF) val primaryContainerLight = Color(0xFFFFDAD6) diff --git a/composeApp/src/commonMain/kotlin/net/newpipe/app/theme/Dimens.kt b/composeApp/src/commonMain/kotlin/net/newpipe/app/theme/Dimens.kt new file mode 100644 index 000000000..b6e43776b --- /dev/null +++ b/composeApp/src/commonMain/kotlin/net/newpipe/app/theme/Dimens.kt @@ -0,0 +1,24 @@ +/* + * SPDX-FileCopyrightText: 2026 NewPipe e.V. + * SPDX-License-Identifier: GPL-3.0-or-later + */ + +package net.newpipe.app.theme + +import androidx.compose.ui.unit.dp + +val spaceXXSmall = 2.dp +val spaceXSmall = 4.dp +val spaceSmall = 8.dp +val spaceMedium = 10.dp +val spaceNormal = 12.dp +val spaceLarge = 16.dp +val spaceXLarge = 32.dp + +val iconLDPI = 36.dp +val iconMDPI = 48.dp +val iconTVDPI = 64.dp +val iconHDPI = 72.dp +val iconXHDPI = 96.dp +val iconXXHDPI = 144.dp +val iconXXXHDPI = 192.dp diff --git a/composeApp/src/commonMain/kotlin/net/newpipe/app/theme/Theme.kt b/composeApp/src/commonMain/kotlin/net/newpipe/app/theme/Theme.kt index af0412cec..249344be5 100644 --- a/composeApp/src/commonMain/kotlin/net/newpipe/app/theme/Theme.kt +++ b/composeApp/src/commonMain/kotlin/net/newpipe/app/theme/Theme.kt @@ -7,12 +7,13 @@ package net.newpipe.app.theme import androidx.compose.foundation.isSystemInDarkTheme +import androidx.compose.material3.ColorScheme import androidx.compose.material3.MaterialExpressiveTheme -import androidx.compose.material3.MaterialTheme import androidx.compose.material3.darkColorScheme import androidx.compose.material3.lightColorScheme import androidx.compose.runtime.Composable import androidx.compose.ui.graphics.Color +import androidx.compose.ui.platform.LocalInspectionMode import com.russhwolf.settings.Settings import org.koin.compose.koinInject @@ -94,24 +95,41 @@ private val darkScheme = darkColorScheme( private val blackScheme = darkScheme.copy(surface = Color.Black) +/** + * Gets current color scheme chosen by the user + */ @Composable -fun AppTheme( +fun currentColorScheme( useDarkTheme: Boolean = isSystemInDarkTheme(), settings: Settings = koinInject(), - content: @Composable () -> Unit -) { +): ColorScheme { val nightScheme = when(settings.getString("night_theme", "dark_theme")) { "black_theme" -> blackScheme else -> darkScheme } + return when(settings.getString("theme", "auto_device_theme")) { + "light_theme" -> lightScheme + "dark_theme" -> darkScheme + "black_theme" -> blackScheme + else -> if (!useDarkTheme) lightScheme else nightScheme + } +} + +/** + * Default app theme for the NewPipe composables + * @param isPreview Whether the theme is being used in preview mode + * @param colorScheme Color scheme to use for theme, defaults to light in preview mode + * @param content Composable content to show to the user + */ +@Composable +fun AppTheme( + isPreview: Boolean = LocalInspectionMode.current, + colorScheme: ColorScheme = if (isPreview) lightScheme else currentColorScheme(), + content: @Composable () -> Unit +) { MaterialExpressiveTheme( - colorScheme = when(settings.getString("theme", "auto_device_theme")) { - "light_theme" -> lightScheme - "dark_theme" -> darkScheme - "black_theme" -> blackScheme - else -> if (!useDarkTheme) lightScheme else nightScheme - }, + colorScheme = colorScheme, content = content ) } diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index f3cae3b9c..bdc919418 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -4,6 +4,7 @@ # [versions] +about-libraries = "14.1.0" acra = "5.13.1" activity = "1.13.0" agp = "9.2.0" @@ -74,6 +75,7 @@ webkit = "1.15.0" work = "2.11.2" [libraries] +about-libraries-compose-m3 = { group = "com.mikepenz", name = "aboutlibraries-compose-m3", version.ref = "about-libraries" } acra-core = { module = "ch.acra:acra-core", version.ref = "acra" } android-desugar = { module = "com.android.tools:desugar_jdk_libs_nio", version.ref = "desugar" } androidx-activity = { module = "androidx.activity:activity-compose", version.ref = "activity" } @@ -159,6 +161,7 @@ squareup-okhttp = { module = "com.squareup.okhttp3:okhttp", version.ref = "okhtt zacsweers-autoservice-compiler = { module = "dev.zacsweers.autoservice:auto-service-ksp", version.ref = "autoservice-zacsweers" } [plugins] +about-libraries = { id = "com.mikepenz.aboutlibraries.plugin", version.ref = "about-libraries" } android-application = { id = "com.android.application", version.ref = "agp" } android-legacy-kapt = { id = "com.android.legacy-kapt", version.ref = "agp" } # Needed for statesaver android-library = { id = "com.android.kotlin.multiplatform.library", version.ref = "agp" }