mikepenz / AboutLibraries

AboutLibraries automatically collects all dependencies and licenses of any gradle project (Kotlin MultiPlatform), and provides easy to integrate UI components for Android and Compose-jb environments
http://mikepenz.github.io/AboutLibraries/
Apache License 2.0
3.66k stars 423 forks source link

create .json file without content when use Android Gradle Plugin 7.3.0 #800

Closed jumpbayern closed 1 year ago

jumpbayern commented 2 years ago

After updating the Android Gradle plugin from version 7.2.2 to 7.3.0, the .json file is created but there is no content in it.

image

mikepenz commented 2 years ago

@jumpbayern can this be reproduced even after a clean build?

jumpbayern commented 2 years ago

@mikepenz Yes. The same behaviour exists after a clean build.

mikepenz commented 2 years ago

@jumpbayern could you please provide a sample app to reproduce this? (Testing the sample app as part of this project with 7.3.0 and this does not show this issue.)

It sounds like there may be some build cache scenario/problem, which should be resolved with a full clean build of the project.

jumpbayern commented 2 years ago

@mikepenz I have done the following:

After I build the app again, the .json file is still created without content.

mikepenz commented 2 years ago

Would it be possible to provide a sample app please, as it will be super hard to reproduce this without being able to reproduce.

Are there any log messages in the build? What happens if you run the export step manually with --info flag?

./gradlew app:exportLibraryDefinitions -PaboutLibraries.exportPath=src/main/res/raw/ -PaboutLibraries.exportVariant=release --info
jumpbayern commented 2 years ago

@mikepenz I have also just tested it with a new project. Somehow it is related to the cache. After the .json file has been generated once, it is not recreated.

Can you tell me what the problem is and how I can solve it?

mikepenz commented 2 years ago

Given that I can't reproduce it in the projects I have at hands, I have no answer to that question.

With new project you reference to an android studio template? Please provide a sample to possibly help to reproduce it and investigate more.

wezley98 commented 2 years ago

Just testing this plugin as a new user, I'm also seeing the same issue on AS 7.3.0.

{"metadata":{"generated":"2022-10-05T14:22:23.919Z"},"libraries":[],"licenses":{}}

mikepenz commented 2 years ago

Would it be possible to provide a sample app please on this or more information?

E.g. output of the log in info log level, which gradle version, the whole build environment, which plugins are being used.

What is the output of the action using some of the provided gradle tasks?

wezley98 commented 2 years ago

@mikepenz Hope this helps.

Android Studio Dolphin | 2021.3.1 Build #AI-213.7172.25.2113.9014738, built on August 31, 2022 Runtime version: 11.0.13+0-b1751.21-8125866 x86_64 VM: OpenJDK 64-Bit Server VM by JetBrains s.r.o. macOS 12.6

com.mikepenz.aboutlibraries.plugin : Version 10.5.0

gradle.properties

kotlin.code.style=official

org.gradle.configureondemand=true
org.gradle.daemon=true
org.gradle.parallel=true
org.gradle.vfs.watch=true
org.gradle.caching=true
org.gradle.jvmargs=-Xmx4096M -Dkotlin.daemon.jvm.options\="-Xmx4096M" -Dfile.encoding\=UTF-8 -XX:+UseParallelGC
android.useAndroidX=true
kapt.include.compile.classpath=false
android.enableJetifier=true
kapt.incremental.apt=true
android.jetifier.ignorelist=android-base-common,common

# disable buildConfig generation, speeds up build performance. Turn on in module if using this with:
# buildFeatures {
#        buildConfig = true
#    }
android.defaults.buildfeatures.buildconfig=false

# enable new kotlin caching
# https://blog.jetbrains.com/kotlin/2022/07/a-new-approach-to-incremental-compilation-in-kotlin/#how-to
kotlin.incremental.useClasspathSnapshot=true

# R8
# If you see issues with this turn it off.
android.enableR8.fullMode=true
# Enable rudimentary R class namespacing where each library only contains
# references to the resources it declares instead of declarations plus all transitive dependency references.
android.nonTransitiveRClass=true
# Generate the compile time only R class using the app's local resources
android.enableAppCompileTimeRClass=true
# We do this now, as in future AS versions these will be errors
android.r8.failOnMissingClasses = true
# Run 'aapt optimize' on resources to minimize their APK size impact.
android.enableResourceOptimizations=true

Output of task ./gradlew app:exportLibraryDefinitions -PaboutLibraries.exportPath=src/main/res/raw/ -PaboutLibraries.exportVariant=release

Configuration on demand is an incubating feature. Type-safe project accessors is an incubating feature.

Configure project :app WARNING:The option setting 'android.r8.failOnMissingClasses=true' is experimental. The current default is 'false'. WARNING:The option setting 'android.enableAppCompileTimeRClass=true' is experimental. The current default is 'false'. WARNING:The option setting 'android.jetifier.ignorelist=android-base-common,common' is experimental.

BUILD SUCCESSFUL in 3s 7 actionable tasks: 1 from cache, 6 up-to-date

I've re-ran we -info which gives more clues.

Task name matched 'exportLibraryDefinitions'
Selected primary task 'app:exportLibraryDefinitions' from project :app
All projects evaluated.
Tasks to be executed: [task ':app:collectDependencies', task ':app:exportLibraryDefinitions']
Tasks that were excluded: []
Resolve mutations for :app:collectDependencies (Thread[Execution worker Thread 6,5,main]) started.
Resolve mutations for :app:collectDependencies (Thread[Execution worker Thread 6,5,main]) completed. Took 0.0 secs.
:app:collectDependencies (Thread[Execution worker Thread 9,5,main]) started.

> Task :app:collectDependencies UP-TO-DATE
Build cache key for task ':app:collectDependencies' is 28bcf0090ab8d7e7cb45293b1668442d
Skipping task ':app:collectDependencies' as it is up-to-date.
:app:collectDependencies (Thread[Execution worker Thread 9,5,main]) completed. Took 0.001 secs.
Resolve mutations for :app:exportLibraryDefinitions (Thread[Execution worker Thread 6,5,main]) started.
Resolve mutations for :app:exportLibraryDefinitions (Thread[Execution worker Thread 6,5,main]) completed. Took 0.0 secs.
:app:exportLibraryDefinitions (Thread[Execution worker Thread 9,5,main]) started.
producer locations for task group 0 (Thread[Execution worker Thread 6,5,main]) started.
producer locations for task group 0 (Thread[Execution worker Thread 6,5,main]) completed. Took 0.0 secs.

> Task :app:exportLibraryDefinitions UP-TO-DATE
Build cache key for task ':app:exportLibraryDefinitions' is 9e7562991fc67829af8b3714551f0e95
Skipping task ':app:exportLibraryDefinitions' as it is up-to-date.
:app:exportLibraryDefinitions (Thread[Execution worker Thread 9,5,main]) completed. Took 0.0 secs.

BUILD SUCCESSFUL in 3s
7 actionable tasks: 7 up-to-date
wezley98 commented 2 years ago

Also turning off gradle build-cache seems to have no effect.

> Task :app:exportLibraryDefinitions UP-TO-DATE
Caching disabled for task ':app:exportLibraryDefinitions' because:
  Build cache is disabled
Skipping task ':app:exportLibraryDefinitions' as it is up-to-date.
:app:exportLibraryDefinitions (Thread[Execution worker Thread 6,5,main]) completed. Took 0.002 secs.

Task is still reported as up-to-date.

mikepenz commented 2 years ago

@wezley98 thanks for providing these. Started a fresh application, and applied exactly your gradle.properties + only added the plugin. And it works normally. 🤔

Archive.zip

Is there anything else in your setup which may could result in a special behaviour? Any specific build variant or build flavor setup?

If you run ./gradlew findLibraries --info will there be any additional info?

jumpbayern commented 2 years ago

@mikepenz We have several variants or flavours in our project. The naming is then always as follows:

DevelopDebug or ProductionRelease We do not have a flavour that is exclusively called Debug, as in your sample project from yesterday. Is it possible that this is why it doesn't work?
mikepenz commented 2 years ago

Could you possibly provide the rough configuration you apply for those variants / flavours? so I can try these out within the sample?

jumpbayern commented 2 years ago

Hello @mikepenz,

sorry for the late reply.

I have added different ProductFlavors to your example. When you do this, .json files are created, but without content.

TestDependencies_neu.zip

mikepenz commented 2 years ago

Thank you for providing the project. T

here must be something different happening. Opened the project. And just pressed the run button to install it in the emulator. Which would generate the respective json file below:

aboutlibraries.json ``` { "metadata": { "generated": "2022-10-28T09:05:15.836Z" }, "libraries": [ { "uniqueId": "androidx.databinding:viewbinding", "funding": [], "developers": [], "artifactVersion": "7.3.0", "description": "", "name": "androidx.databinding:viewbinding", "licenses": [ "Apache-2.0" ] }, { "uniqueId": "androidx.annotation:annotation", "funding": [], "developers": [ { "name": "The Android Open Source Project" } ], "artifactVersion": "1.3.0", "description": "The Support Library is a static library that you can add to your Android application in order to use APIs that are either not available for older platform versions or utility APIs that aren't a part of the framework APIs.", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "https://cs.android.com/androidx/platform/frameworks/support" }, "name": "Support Annotations", "website": "https://developer.android.com/jetpack/androidx/releases/annotation#1.3.0", "licenses": [ "Apache-2.0" ] }, { "uniqueId": "androidx.navigation:navigation-ui-ktx", "funding": [], "developers": [ { "name": "The Android Open Source Project" } ], "artifactVersion": "2.5.2", "description": "Android Navigation-UI-Ktx", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "https://cs.android.com/androidx/platform/frameworks/support" }, "name": "Android Navigation UI Kotlin Extensions", "website": "https://developer.android.com/jetpack/androidx/releases/navigation#2.5.2", "licenses": [ "Apache-2.0" ] }, { "uniqueId": "androidx.navigation:navigation-ui", "funding": [], "developers": [ { "name": "The Android Open Source Project" } ], "artifactVersion": "2.5.2", "description": "Android Navigation-UI", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "https://cs.android.com/androidx/platform/frameworks/support" }, "name": "Android Navigation UI", "website": "https://developer.android.com/jetpack/androidx/releases/navigation#2.5.2", "licenses": [ "Apache-2.0" ] }, { "uniqueId": "com.google.android.material:material", "funding": [], "developers": [ { "name": "The Android Open Source Project" } ], "artifactVersion": "1.6.1", "description": "Material Components for Android is a static library that you can add to your Android application in order to use APIs that provide implementations of the Material Design specification. Compatible on devices running API 14 or later.", "scm": { "connection": "scm:git:https://github.com/material-components/material-components-android.git", "url": "https://github.com/material-components/material-components-android" }, "name": "Material Components for Android", "website": "https://github.com/material-components/material-components-android", "licenses": [ "Apache-2.0" ] }, { "uniqueId": "androidx.appcompat:appcompat", "funding": [], "developers": [ { "name": "The Android Open Source Project" } ], "artifactVersion": "1.5.1", "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.", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "https://cs.android.com/androidx/platform/frameworks/support" }, "name": "Android AppCompat Library", "website": "https://developer.android.com/jetpack/androidx/releases/appcompat#1.5.1", "licenses": [ "Apache-2.0" ] }, { "uniqueId": "androidx.fragment:fragment", "funding": [], "developers": [ { "name": "The Android Open Source Project" } ], "artifactVersion": "1.5.2", "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.", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "https://cs.android.com/androidx/platform/frameworks/support" }, "name": "Support fragment", "website": "https://developer.android.com/jetpack/androidx/releases/fragment#1.5.2", "licenses": [ "Apache-2.0" ] }, { "uniqueId": "androidx.activity:activity", "funding": [], "developers": [ { "name": "The Android Open Source Project" } ], "artifactVersion": "1.5.1", "description": "Provides the base Activity subclass and the relevant hooks to build a composable structure on top.", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "https://cs.android.com/androidx/platform/frameworks/support" }, "name": "Activity", "website": "https://developer.android.com/jetpack/androidx/releases/activity#1.5.1", "licenses": [ "Apache-2.0" ] }, { "uniqueId": "androidx.lifecycle:lifecycle-viewmodel-savedstate", "funding": [], "developers": [ { "name": "The Android Open Source Project" } ], "artifactVersion": "2.5.1", "description": "Android Lifecycle ViewModel", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "https://cs.android.com/androidx/platform/frameworks/support" }, "name": "Android Lifecycle ViewModel with SavedState", "website": "https://developer.android.com/jetpack/androidx/releases/lifecycle#2.5.1", "licenses": [ "Apache-2.0" ] }, { "uniqueId": "org.jetbrains.kotlinx:kotlinx-coroutines-android", "funding": [], "developers": [ { "organisationUrl": "https://www.jetbrains.com", "name": "JetBrains Team" } ], "artifactVersion": "1.6.1", "description": "Coroutines support libraries for Kotlin", "scm": { "url": "https://github.com/Kotlin/kotlinx.coroutines" }, "name": "kotlinx-coroutines-android", "website": "https://github.com/Kotlin/kotlinx.coroutines", "licenses": [ "Apache-2.0" ] }, { "uniqueId": "org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm", "funding": [], "developers": [ { "organisationUrl": "https://www.jetbrains.com", "name": "JetBrains Team" } ], "artifactVersion": "1.6.1", "description": "Coroutines support libraries for Kotlin", "scm": { "url": "https://github.com/Kotlin/kotlinx.coroutines" }, "name": "kotlinx-coroutines-core", "website": "https://github.com/Kotlin/kotlinx.coroutines", "licenses": [ "Apache-2.0" ] }, { "uniqueId": "org.jetbrains.kotlin:kotlin-stdlib-jdk8", "funding": [], "developers": [ { "organisationUrl": "https://www.jetbrains.com", "name": "Kotlin Team" } ], "artifactVersion": "1.7.10", "description": "Kotlin Standard Library JDK 8 extension", "scm": { "connection": "scm:git:https://github.com/JetBrains/kotlin.git", "url": "https://github.com/JetBrains/kotlin", "developerConnection": "scm:git:https://github.com/JetBrains/kotlin.git" }, "name": "Kotlin Stdlib Jdk8", "website": "https://kotlinlang.org/", "licenses": [ "Apache-2.0" ] }, { "uniqueId": "org.jetbrains.kotlin:kotlin-stdlib-jdk7", "funding": [], "developers": [ { "organisationUrl": "https://www.jetbrains.com", "name": "Kotlin Team" } ], "artifactVersion": "1.7.10", "description": "Kotlin Standard Library JDK 7 extension", "scm": { "connection": "scm:git:https://github.com/JetBrains/kotlin.git", "url": "https://github.com/JetBrains/kotlin", "developerConnection": "scm:git:https://github.com/JetBrains/kotlin.git" }, "name": "Kotlin Stdlib Jdk7", "website": "https://kotlinlang.org/", "licenses": [ "Apache-2.0" ] }, { "uniqueId": "org.jetbrains.kotlin:kotlin-stdlib", "funding": [], "developers": [ { "organisationUrl": "https://www.jetbrains.com", "name": "Kotlin Team" } ], "artifactVersion": "1.7.10", "description": "Kotlin Standard Library for JVM", "scm": { "connection": "scm:git:https://github.com/JetBrains/kotlin.git", "url": "https://github.com/JetBrains/kotlin", "developerConnection": "scm:git:https://github.com/JetBrains/kotlin.git" }, "name": "Kotlin Stdlib", "website": "https://kotlinlang.org/", "licenses": [ "Apache-2.0" ] }, { "uniqueId": "org.jetbrains.kotlin:kotlin-stdlib-common", "funding": [], "developers": [ { "organisationUrl": "https://www.jetbrains.com", "name": "Kotlin Team" } ], "artifactVersion": "1.7.10", "description": "Kotlin Common Standard Library", "scm": { "connection": "scm:git:https://github.com/JetBrains/kotlin.git", "url": "https://github.com/JetBrains/kotlin", "developerConnection": "scm:git:https://github.com/JetBrains/kotlin.git" }, "name": "Kotlin Stdlib Common", "website": "https://kotlinlang.org/", "licenses": [ "Apache-2.0" ] }, { "uniqueId": "org.jetbrains:annotations", "funding": [], "developers": [ { "organisationUrl": "http://www.jetbrains.com", "name": "JetBrains Team" } ], "artifactVersion": "13.0", "description": "A set of annotations used for code inspection support and code documentation.", "scm": { "connection": "scm:git:https://github.com/JetBrains/intellij-community.git", "url": "https://github.com/JetBrains/intellij-community" }, "name": "IntelliJ IDEA Annotations", "website": "http://www.jetbrains.org", "licenses": [ "Apache-2.0" ] }, { "uniqueId": "androidx.core:core-ktx", "funding": [], "developers": [ { "name": "The Android Open Source Project" } ], "artifactVersion": "1.9.0", "description": "Kotlin extensions for 'core' artifact", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "https://cs.android.com/androidx/platform/frameworks/support" }, "name": "Core Kotlin Extensions", "website": "https://developer.android.com/jetpack/androidx/releases/core#1.9.0", "licenses": [ "Apache-2.0" ] }, { "uniqueId": "androidx.core:core", "funding": [], "developers": [ { "name": "The Android Open Source Project" } ], "artifactVersion": "1.9.0", "description": "The Support Library is a static library that you can add to your Android application in order to use APIs that are either not available for older platform versions or utility APIs that aren't a part of the framework APIs. Compatible on devices running API 14 or later.", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "https://cs.android.com/androidx/platform/frameworks/support" }, "name": "Support compat", "website": "https://developer.android.com/jetpack/androidx/releases/core#1.9.0", "licenses": [ "Apache-2.0" ] }, { "uniqueId": "androidx.lifecycle:lifecycle-runtime", "funding": [], "developers": [ { "name": "The Android Open Source Project" } ], "artifactVersion": "2.5.1", "description": "Android Lifecycle Runtime", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "https://cs.android.com/androidx/platform/frameworks/support" }, "name": "Android Lifecycle Runtime", "website": "https://developer.android.com/jetpack/androidx/releases/lifecycle#2.5.1", "licenses": [ "Apache-2.0" ] }, { "uniqueId": "androidx.arch.core:core-common", "funding": [], "developers": [ { "name": "The Android Open Source Project" } ], "artifactVersion": "2.1.0", "description": "Android Arch-Common", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "http://source.android.com" }, "name": "Android Arch-Common", "website": "https://developer.android.com/topic/libraries/architecture/index.html", "licenses": [ "Apache-2.0" ] }, { "uniqueId": "androidx.lifecycle:lifecycle-common", "funding": [], "developers": [ { "name": "The Android Open Source Project" } ], "artifactVersion": "2.5.1", "description": "Android Lifecycle-Common", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "https://cs.android.com/androidx/platform/frameworks/support" }, "name": "Android Lifecycle-Common", "website": "https://developer.android.com/jetpack/androidx/releases/lifecycle#2.5.1", "licenses": [ "Apache-2.0" ] }, { "uniqueId": "androidx.versionedparcelable:versionedparcelable", "funding": [], "developers": [ { "name": "The Android Open Source Project" } ], "artifactVersion": "1.1.1", "description": "Provides a stable but relatively compact binary serialization format that can be passed across processes or persisted safely.", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "http://source.android.com" }, "name": "VersionedParcelable", "website": "http://developer.android.com/tools/extras/support-library.html", "licenses": [ "Apache-2.0" ] }, { "uniqueId": "androidx.collection:collection", "funding": [], "developers": [ { "name": "The Android Open Source Project" } ], "artifactVersion": "1.1.0", "description": "Standalone efficient collections.", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "http://source.android.com" }, "name": "Support collections", "website": "http://developer.android.com/tools/extras/support-library.html", "licenses": [ "Apache-2.0" ] }, { "uniqueId": "androidx.annotation:annotation-experimental", "funding": [], "developers": [ { "name": "The Android Open Source Project" } ], "artifactVersion": "1.3.0", "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.", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "https://cs.android.com/androidx/platform/frameworks/support" }, "name": "Experimental annotation", "website": "https://developer.android.com/jetpack/androidx/releases/annotation#1.3.0", "licenses": [ "Apache-2.0" ] }, { "uniqueId": "androidx.savedstate:savedstate", "funding": [], "developers": [ { "name": "The Android Open Source Project" } ], "artifactVersion": "1.2.0", "description": "Android Lifecycle Saved State", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "https://cs.android.com/androidx/platform/frameworks/support" }, "name": "Saved State", "website": "https://developer.android.com/jetpack/androidx/releases/savedstate#1.2.0", "licenses": [ "Apache-2.0" ] }, { "uniqueId": "androidx.lifecycle:lifecycle-viewmodel", "funding": [], "developers": [ { "name": "The Android Open Source Project" } ], "artifactVersion": "2.5.1", "description": "Android Lifecycle ViewModel", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "https://cs.android.com/androidx/platform/frameworks/support" }, "name": "Android Lifecycle ViewModel", "website": "https://developer.android.com/jetpack/androidx/releases/lifecycle#2.5.1", "licenses": [ "Apache-2.0" ] }, { "uniqueId": "androidx.lifecycle:lifecycle-livedata-core", "funding": [], "developers": [ { "name": "The Android Open Source Project" } ], "artifactVersion": "2.5.1", "description": "Android Lifecycle LiveData Core", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "https://cs.android.com/androidx/platform/frameworks/support" }, "name": "Android Lifecycle LiveData Core", "website": "https://developer.android.com/jetpack/androidx/releases/lifecycle#2.5.1", "licenses": [ "Apache-2.0" ] }, { "uniqueId": "androidx.viewpager:viewpager", "funding": [], "developers": [ { "name": "The Android Open Source Project" } ], "artifactVersion": "1.0.0", "description": "The Support Library is a static library that you can add to your Android application in order to use APIs that are either not available for older platform versions or utility APIs that aren't a part of the framework APIs. Compatible on devices running API 14 or later.", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "http://source.android.com" }, "name": "Support View Pager", "website": "http://developer.android.com/tools/extras/support-library.html", "licenses": [ "Apache-2.0" ] }, { "uniqueId": "androidx.customview:customview", "funding": [], "developers": [ { "name": "The Android Open Source Project" } ], "artifactVersion": "1.1.0", "description": "The Support Library is a static library that you can add to your Android application in order to use APIs that are either not available for older platform versions or utility APIs that aren't a part of the framework APIs. Compatible on devices running API 14 or later.", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "http://source.android.com" }, "name": "Support Custom View", "website": "https://developer.android.com/jetpack/androidx", "licenses": [ "Apache-2.0" ] }, { "uniqueId": "androidx.loader:loader", "funding": [], "developers": [ { "name": "The Android Open Source Project" } ], "artifactVersion": "1.0.0", "description": "The Support Library is a static library that you can add to your Android application in order to use APIs that are either not available for older platform versions or utility APIs that aren't a part of the framework APIs. Compatible on devices running API 14 or later.", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "http://source.android.com" }, "name": "Support loader", "website": "http://developer.android.com/tools/extras/support-library.html", "licenses": [ "Apache-2.0" ] }, { "uniqueId": "androidx.lifecycle:lifecycle-livedata", "funding": [], "developers": [ { "name": "The Android Open Source Project" } ], "artifactVersion": "2.0.0", "description": "Android Lifecycle LiveData", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "http://source.android.com" }, "name": "Android Lifecycle LiveData", "website": "https://developer.android.com/topic/libraries/architecture/index.html", "licenses": [ "Apache-2.0" ] }, { "uniqueId": "androidx.arch.core:core-runtime", "funding": [], "developers": [ { "name": "The Android Open Source Project" } ], "artifactVersion": "2.1.0", "description": "Android Arch-Runtime", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "http://source.android.com" }, "name": "Android Arch-Runtime", "website": "https://developer.android.com/topic/libraries/architecture/index.html", "licenses": [ "Apache-2.0" ] }, { "uniqueId": "androidx.appcompat:appcompat-resources", "funding": [], "developers": [ { "name": "The Android Open Source Project" } ], "artifactVersion": "1.5.1", "description": "The Resources Library is a static library that you can add to your Android application in order to use resource APIs that backport the latest APIs to older versions of the platform. Compatible on devices running API 14 or later.", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "https://cs.android.com/androidx/platform/frameworks/support" }, "name": "Android Resources Library", "website": "https://developer.android.com/jetpack/androidx/releases/appcompat#1.5.1", "licenses": [ "Apache-2.0" ] }, { "uniqueId": "androidx.vectordrawable:vectordrawable-animated", "funding": [], "developers": [ { "name": "The Android Open Source Project" } ], "artifactVersion": "1.1.0", "description": "Android Support AnimatedVectorDrawable", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "http://source.android.com" }, "name": "Support AnimatedVectorDrawable", "website": "https://developer.android.com/jetpack/androidx", "licenses": [ "Apache-2.0" ] }, { "uniqueId": "androidx.vectordrawable:vectordrawable", "funding": [], "developers": [ { "name": "The Android Open Source Project" } ], "artifactVersion": "1.1.0", "description": "Android Support VectorDrawable", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "http://source.android.com" }, "name": "Support VectorDrawable", "website": "https://developer.android.com/jetpack/androidx", "licenses": [ "Apache-2.0" ] }, { "uniqueId": "androidx.interpolator:interpolator", "funding": [], "developers": [ { "name": "The Android Open Source Project" } ], "artifactVersion": "1.0.0", "description": "The Support Library is a static library that you can add to your Android application in order to use APIs that are either not available for older platform versions or utility APIs that aren't a part of the framework APIs. Compatible on devices running API 14 or later.", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "http://source.android.com" }, "name": "Support Interpolators", "website": "http://developer.android.com/tools/extras/support-library.html", "licenses": [ "Apache-2.0" ] }, { "uniqueId": "androidx.drawerlayout:drawerlayout", "funding": [], "developers": [ { "name": "The Android Open Source Project" } ], "artifactVersion": "1.1.1", "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.", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "http://source.android.com" }, "name": "Support Drawer Layout", "website": "https://developer.android.com/jetpack/androidx", "licenses": [ "Apache-2.0" ] }, { "uniqueId": "androidx.cursoradapter:cursoradapter", "funding": [], "developers": [ { "name": "The Android Open Source Project" } ], "artifactVersion": "1.0.0", "description": "The Support Library is a static library that you can add to your Android application in order to use APIs that are either not available for older platform versions or utility APIs that aren't a part of the framework APIs. Compatible on devices running API 14 or later.", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "http://source.android.com" }, "name": "Support Cursor Adapter", "website": "http://developer.android.com/tools/extras/support-library.html", "licenses": [ "Apache-2.0" ] }, { "uniqueId": "androidx.viewpager2:viewpager2", "funding": [], "developers": [ { "name": "The Android Open Source Project" } ], "artifactVersion": "1.0.0", "description": "AndroidX Widget ViewPager2", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "http://source.android.com" }, "name": "AndroidX Widget ViewPager2", "website": "https://developer.android.com/jetpack/androidx", "licenses": [ "Apache-2.0" ] }, { "uniqueId": "androidx.recyclerview:recyclerview", "funding": [], "developers": [ { "name": "The Android Open Source Project" } ], "artifactVersion": "1.1.0", "description": "Android Support RecyclerView v7", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "http://source.android.com" }, "name": "Support RecyclerView v7", "website": "https://developer.android.com/jetpack/androidx", "licenses": [ "Apache-2.0" ] }, { "uniqueId": "androidx.coordinatorlayout:coordinatorlayout", "funding": [], "developers": [ { "name": "The Android Open Source Project" } ], "artifactVersion": "1.1.0", "description": "The Support Library is a static library that you can add to your Android application in order to use APIs that are either not available for older platform versions or utility APIs that aren't a part of the framework APIs. Compatible on devices running API 14 or later.", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "http://source.android.com" }, "name": "Support Coordinator Layout", "website": "https://developer.android.com/jetpack/androidx", "licenses": [ "Apache-2.0" ] }, { "uniqueId": "androidx.dynamicanimation:dynamicanimation", "funding": [], "developers": [ { "name": "The Android Open Source Project" } ], "artifactVersion": "1.0.0", "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.", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "http://source.android.com" }, "name": "Support DynamicAnimation", "website": "http://developer.android.com/tools/extras/support-library.html", "licenses": [ "Apache-2.0" ] }, { "uniqueId": "androidx.legacy:legacy-support-core-utils", "funding": [], "developers": [ { "name": "The Android Open Source Project" } ], "artifactVersion": "1.0.0", "description": "The Support Library is a static library that you can add to your Android application in order to use APIs that are either not available for older platform versions or utility APIs that aren't a part of the framework APIs. Compatible on devices running API 14 or later.", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "http://source.android.com" }, "name": "Support core utils", "website": "http://developer.android.com/tools/extras/support-library.html", "licenses": [ "Apache-2.0" ] }, { "uniqueId": "androidx.documentfile:documentfile", "funding": [], "developers": [ { "name": "The Android Open Source Project" } ], "artifactVersion": "1.0.0", "description": "The Support Library is a static library that you can add to your Android application in order to use APIs that are either not available for older platform versions or utility APIs that aren't a part of the framework APIs. Compatible on devices running API 14 or later.", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "http://source.android.com" }, "name": "Support Document File", "website": "http://developer.android.com/tools/extras/support-library.html", "licenses": [ "Apache-2.0" ] }, { "uniqueId": "androidx.localbroadcastmanager:localbroadcastmanager", "funding": [], "developers": [ { "name": "The Android Open Source Project" } ], "artifactVersion": "1.0.0", "description": "The Support Library is a static library that you can add to your Android application in order to use APIs that are either not available for older platform versions or utility APIs that aren't a part of the framework APIs. Compatible on devices running API 14 or later.", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "http://source.android.com" }, "name": "Support Local Broadcast Manager", "website": "http://developer.android.com/tools/extras/support-library.html", "licenses": [ "Apache-2.0" ] }, { "uniqueId": "androidx.print:print", "funding": [], "developers": [ { "name": "The Android Open Source Project" } ], "artifactVersion": "1.0.0", "description": "The Support Library is a static library that you can add to your Android application in order to use APIs that are either not available for older platform versions or utility APIs that aren't a part of the framework APIs. Compatible on devices running API 14 or later.", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "http://source.android.com" }, "name": "Support Print", "website": "http://developer.android.com/tools/extras/support-library.html", "licenses": [ "Apache-2.0" ] }, { "uniqueId": "androidx.transition:transition", "funding": [], "developers": [ { "name": "The Android Open Source Project" } ], "artifactVersion": "1.4.1", "description": "Android Transition Support Library", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "https://cs.android.com/androidx/platform/frameworks/support" }, "name": "Android Transition Support Library", "website": "https://developer.android.com/jetpack/androidx/releases/transition#1.4.1", "licenses": [ "Apache-2.0" ] }, { "uniqueId": "androidx.cardview:cardview", "funding": [], "developers": [ { "name": "The Android Open Source Project" } ], "artifactVersion": "1.0.0", "description": "Android Support CardView v7", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "http://source.android.com" }, "name": "Support CardView v7", "website": "http://developer.android.com/tools/extras/support-library.html", "licenses": [ "Apache-2.0" ] }, { "uniqueId": "androidx.constraintlayout:constraintlayout", "funding": [], "developers": [ { "name": "The Android Open Source Project" } ], "artifactVersion": "2.1.4", "description": "ConstraintLayout for Android", "scm": { "connection": "git@github.com:androidx/constraintlayout.git", "url": "https://github.com/androidx/constraintlayout" }, "name": "Android ConstraintLayout", "website": "http://tools.android.com", "licenses": [ "Apache-2.0" ] }, { "uniqueId": "androidx.navigation:navigation-runtime", "funding": [], "developers": [ { "name": "The Android Open Source Project" } ], "artifactVersion": "2.5.2", "description": "Android Navigation-Runtime", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "https://cs.android.com/androidx/platform/frameworks/support" }, "name": "Android Navigation Runtime", "website": "https://developer.android.com/jetpack/androidx/releases/navigation#2.5.2", "licenses": [ "Apache-2.0" ] }, { "uniqueId": "androidx.activity:activity-ktx", "funding": [], "developers": [ { "name": "The Android Open Source Project" } ], "artifactVersion": "1.5.1", "description": "Kotlin extensions for 'activity' artifact", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "https://cs.android.com/androidx/platform/frameworks/support" }, "name": "Activity Kotlin Extensions", "website": "https://developer.android.com/jetpack/androidx/releases/activity#1.5.1", "licenses": [ "Apache-2.0" ] }, { "uniqueId": "androidx.lifecycle:lifecycle-viewmodel-ktx", "funding": [], "developers": [ { "name": "The Android Open Source Project" } ], "artifactVersion": "2.5.1", "description": "Kotlin extensions for 'viewmodel' artifact", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "https://cs.android.com/androidx/platform/frameworks/support" }, "name": "Android Lifecycle ViewModel Kotlin Extensions", "website": "https://developer.android.com/jetpack/androidx/releases/lifecycle#2.5.1", "licenses": [ "Apache-2.0" ] }, { "uniqueId": "androidx.lifecycle:lifecycle-runtime-ktx", "funding": [], "developers": [ { "name": "The Android Open Source Project" } ], "artifactVersion": "2.5.1", "description": "Kotlin extensions for 'lifecycle' artifact", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "https://cs.android.com/androidx/platform/frameworks/support" }, "name": "Android Lifecycle Kotlin Extensions", "website": "https://developer.android.com/jetpack/androidx/releases/lifecycle#2.5.1", "licenses": [ "Apache-2.0" ] }, { "uniqueId": "androidx.savedstate:savedstate-ktx", "funding": [], "developers": [ { "name": "The Android Open Source Project" } ], "artifactVersion": "1.2.0", "description": "Kotlin extensions for 'savedstate' artifact", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "https://cs.android.com/androidx/platform/frameworks/support" }, "name": "SavedState Kotlin Extensions", "website": "https://developer.android.com/jetpack/androidx/releases/savedstate#1.2.0", "licenses": [ "Apache-2.0" ] }, { "uniqueId": "androidx.navigation:navigation-common", "funding": [], "developers": [ { "name": "The Android Open Source Project" } ], "artifactVersion": "2.5.2", "description": "Android Navigation-Common", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "https://cs.android.com/androidx/platform/frameworks/support" }, "name": "Android Navigation Common", "website": "https://developer.android.com/jetpack/androidx/releases/navigation#2.5.2", "licenses": [ "Apache-2.0" ] }, { "uniqueId": "androidx.navigation:navigation-runtime-ktx", "funding": [], "developers": [ { "name": "The Android Open Source Project" } ], "artifactVersion": "2.5.2", "description": "Android Navigation-Runtime-Ktx", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "https://cs.android.com/androidx/platform/frameworks/support" }, "name": "Android Navigation Runtime Kotlin Extensions", "website": "https://developer.android.com/jetpack/androidx/releases/navigation#2.5.2", "licenses": [ "Apache-2.0" ] }, { "uniqueId": "androidx.navigation:navigation-common-ktx", "funding": [], "developers": [ { "name": "The Android Open Source Project" } ], "artifactVersion": "2.5.2", "description": "Android Navigation-Common-Ktx", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "https://cs.android.com/androidx/platform/frameworks/support" }, "name": "Android Navigation Common Kotlin Extensions", "website": "https://developer.android.com/jetpack/androidx/releases/navigation#2.5.2", "licenses": [ "Apache-2.0" ] }, { "uniqueId": "com.github.bumptech.glide:glide", "funding": [], "developers": [ { "name": "Sam Judd" } ], "artifactVersion": "4.13.2", "description": "A fast and efficient image loading library for Android focused on smooth scrolling.", "scm": { "connection": "scm:git@github.com:bumptech/glide.git", "url": "https://github.com/bumptech/glide", "developerConnection": "scm:git@github.com:bumptech/glide.git" }, "name": "Glide", "website": "https://github.com/bumptech/glide", "licenses": [ "Apache-2.0", "BSD-2-Clause" ] }, { "uniqueId": "com.github.bumptech.glide:gifdecoder", "funding": [], "developers": [ { "name": "Sam Judd" } ], "artifactVersion": "4.13.2", "description": "Implementation of GifDecoder that is more memory efficient to animate for Android devices.", "scm": { "connection": "scm:git@github.com:bumptech/glide.git", "url": "https://github.com/bumptech/glide", "developerConnection": "scm:git@github.com:bumptech/glide.git" }, "name": "Glide GIF Decoder Library", "website": "https://github.com/bumptech/glide", "licenses": [ "Apache-2.0", "BSD-2-Clause" ] }, { "uniqueId": "androidx.exifinterface:exifinterface", "funding": [], "developers": [ { "name": "The Android Open Source Project" } ], "artifactVersion": "1.2.0", "description": "Android Support ExifInterface", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "http://source.android.com" }, "name": "Support ExifInterface", "website": "https://developer.android.com/jetpack/androidx", "licenses": [ "Apache-2.0" ] }, { "uniqueId": "androidx.tracing:tracing", "funding": [], "developers": [ { "name": "The Android Open Source Project" } ], "artifactVersion": "1.0.0", "description": "Android Tracing", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "https://cs.android.com/androidx/platform/frameworks/support" }, "name": "Android Tracing", "website": "https://developer.android.com/jetpack/androidx/releases/tracing#1.0.0", "licenses": [ "Apache-2.0" ] }, { "uniqueId": "com.github.bumptech.glide:disklrucache", "funding": [], "developers": [ { "name": "Sam Judd" } ], "artifactVersion": "4.13.2", "description": "A cache that uses a bounded amount of space on a filesystem. Based on Jake Wharton's tailored for Glide.", "scm": { "connection": "scm:git@github.com:bumptech/glide.git", "url": "https://github.com/bumptech/glide", "developerConnection": "scm:git@github.com:bumptech/glide.git" }, "name": "Glide Disk LRU Cache Library", "website": "https://github.com/bumptech/glide", "licenses": [ "Apache-2.0", "BSD-2-Clause" ] }, { "uniqueId": "com.github.bumptech.glide:annotations", "funding": [], "developers": [ { "name": "Sam Judd" } ], "artifactVersion": "4.13.2", "description": "A set of annotations for configuring Glide.", "scm": { "connection": "scm:git@github.com:bumptech/glide.git", "url": "https://github.com/bumptech/glide", "developerConnection": "scm:git@github.com:bumptech/glide.git" }, "name": "Glide Annotations", "website": "https://github.com/bumptech/glide", "licenses": [ "Apache-2.0", "BSD-2-Clause" ] }, { "uniqueId": "androidx.navigation:navigation-fragment-ktx", "funding": [], "developers": [ { "name": "The Android Open Source Project" } ], "artifactVersion": "2.5.2", "description": "Android Navigation-Fragment-Ktx", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "https://cs.android.com/androidx/platform/frameworks/support" }, "name": "Android Navigation Fragment Kotlin Extensions", "website": "https://developer.android.com/jetpack/androidx/releases/navigation#2.5.2", "licenses": [ "Apache-2.0" ] }, { "uniqueId": "androidx.navigation:navigation-fragment", "funding": [], "developers": [ { "name": "The Android Open Source Project" } ], "artifactVersion": "2.5.2", "description": "Android Navigation-Fragment", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "https://cs.android.com/androidx/platform/frameworks/support" }, "name": "Android Navigation Fragment", "website": "https://developer.android.com/jetpack/androidx/releases/navigation#2.5.2", "licenses": [ "Apache-2.0" ] }, { "uniqueId": "androidx.fragment:fragment-ktx", "funding": [], "developers": [ { "name": "The Android Open Source Project" } ], "artifactVersion": "1.5.2", "description": "Kotlin extensions for 'fragment' artifact", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "https://cs.android.com/androidx/platform/frameworks/support" }, "name": "Fragment Kotlin Extensions", "website": "https://developer.android.com/jetpack/androidx/releases/fragment#1.5.2", "licenses": [ "Apache-2.0" ] }, { "uniqueId": "androidx.collection:collection-ktx", "funding": [], "developers": [ { "name": "The Android Open Source Project" } ], "artifactVersion": "1.1.0", "description": "Kotlin extensions for 'collection' artifact", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "http://source.android.com" }, "name": "Collections Kotlin Extensions", "website": "http://developer.android.com/tools/extras/support-library.html", "licenses": [ "Apache-2.0" ] }, { "uniqueId": "androidx.lifecycle:lifecycle-livedata-core-ktx", "funding": [], "developers": [ { "name": "The Android Open Source Project" } ], "artifactVersion": "2.5.1", "description": "Kotlin extensions for 'livedata-core' artifact", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "https://cs.android.com/androidx/platform/frameworks/support" }, "name": "LiveData Core Kotlin Extensions", "website": "https://developer.android.com/jetpack/androidx/releases/lifecycle#2.5.1", "licenses": [ "Apache-2.0" ] }, { "uniqueId": "androidx.slidingpanelayout:slidingpanelayout", "funding": [], "developers": [ { "name": "The Android Open Source Project" } ], "artifactVersion": "1.2.0", "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.", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "https://cs.android.com/androidx/platform/frameworks/support" }, "name": "Support Sliding Pane Layout", "website": "https://developer.android.com/jetpack/androidx/releases/slidingpanelayout#1.2.0", "licenses": [ "Apache-2.0" ] }, { "uniqueId": "org.jetbrains.kotlinx:kotlinx-coroutines-bom", "funding": [], "developers": [ { "organisationUrl": "https://www.jetbrains.com", "name": "JetBrains Team" } ], "artifactVersion": "1.6.1", "description": "Coroutines support libraries for Kotlin", "scm": { "url": "https://github.com/Kotlin/kotlinx.coroutines" }, "name": "kotlinx-coroutines-bom", "website": "https://github.com/Kotlin/kotlinx.coroutines", "licenses": [ "Apache-2.0" ] }, { "uniqueId": "androidx.concurrent:concurrent-futures", "funding": [], "developers": [ { "name": "The Android Open Source Project" } ], "artifactVersion": "1.0.0", "description": "Androidx implementation of Guava's ListenableFuture", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "http://source.android.com" }, "name": "AndroidX Futures", "website": "https://developer.android.com/topic/libraries/architecture/index.html", "licenses": [ "Apache-2.0" ] }, { "uniqueId": "com.google.guava:listenablefuture", "funding": [], "developers": [], "artifactVersion": "1.0", "description": "Contains Guava's com.google.common.util.concurrent.ListenableFuture class,\n without any of its other classes -- but is also available in a second\n \"version\" that omits the class to avoid conflicts with the copy in Guava\n itself. The idea is:\n\n - If users want only ListenableFuture, they depend on listenablefuture-1.0.\n\n - If users want all of Guava, they depend on guava, which, as of Guava\n 27.0, depends on\n listenablefuture-9999.0-empty-to-avoid-conflict-with-guava. The 9999.0-...\n version number is enough for some build systems (notably, Gradle) to select\n that empty artifact over the \"real\" listenablefuture-1.0 -- avoiding a\n conflict with the copy of ListenableFuture in guava itself. If users are\n using an older version of Guava or a build system other than Gradle, they\n may see class conflicts. If so, they can solve them by manually excluding\n the listenablefuture artifact or manually forcing their build systems to\n use 9999.0-....", "scm": { "connection": "scm:git:https://github.com/google/guava.git", "url": "https://github.com/google/guava", "developerConnection": "scm:git:git@github.com:google/guava.git" }, "name": "Guava ListenableFuture only", "website": "https://github.com/google/guava", "licenses": [ "Apache-2.0" ] }, { "uniqueId": "androidx.emoji2:emoji2-views-helper", "funding": [], "developers": [ { "name": "The Android Open Source Project" } ], "artifactVersion": "1.2.0", "description": "View helpers for Emoji2", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "https://cs.android.com/androidx/platform/frameworks/support" }, "name": "Android Emoji2 Compat view helpers", "website": "https://developer.android.com/jetpack/androidx/releases/emoji2#1.2.0", "licenses": [ "Apache-2.0" ] }, { "uniqueId": "androidx.emoji2:emoji2", "funding": [], "developers": [ { "name": "The Android Open Source Project" } ], "artifactVersion": "1.2.0", "description": "Core library to enable emoji compatibility in Kitkat and newer devices to avoid the empty emoji characters.", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "https://cs.android.com/androidx/platform/frameworks/support" }, "name": "Android Emoji2 Compat", "website": "https://developer.android.com/jetpack/androidx/releases/emoji2#1.2.0", "licenses": [ "Apache-2.0" ] }, { "uniqueId": "androidx.lifecycle:lifecycle-process", "funding": [], "developers": [ { "name": "The Android Open Source Project" } ], "artifactVersion": "2.4.1", "description": "Android Lifecycle Process", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "https://cs.android.com/androidx/platform/frameworks/support" }, "name": "Android Lifecycle Process", "website": "https://developer.android.com/jetpack/androidx/releases/lifecycle#2.4.1", "licenses": [ "Apache-2.0" ] }, { "uniqueId": "androidx.startup:startup-runtime", "funding": [], "developers": [ { "name": "The Android Open Source Project" } ], "artifactVersion": "1.1.1", "description": "Android App Startup Runtime", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "https://cs.android.com/androidx/platform/frameworks/support" }, "name": "Android App Startup Runtime", "website": "https://developer.android.com/jetpack/androidx/releases/startup#1.1.1", "licenses": [ "Apache-2.0" ] }, { "uniqueId": "androidx.resourceinspection:resourceinspection-annotation", "funding": [], "developers": [ { "name": "The Android Open Source Project" } ], "artifactVersion": "1.0.1", "description": "Annotation processors for Android resource and layout inspection", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "https://cs.android.com/androidx/platform/frameworks/support" }, "name": "Android Resource Inspection - Annotations", "website": "https://developer.android.com/jetpack/androidx/releases/resourceinspection#1.0.1", "licenses": [ "Apache-2.0" ] }, { "uniqueId": "androidx.constraintlayout:constraintlayout-core", "funding": [], "developers": [ { "name": "The Android Open Source Project" } ], "artifactVersion": "1.0.4", "description": "ConstraintLayout core", "scm": { "connection": "git@github.com:androidx/constraintlayout.git", "url": "https://github.com/androidx/constraintlayout" }, "name": "Android ConstraintLayout Core", "website": "http://tools.android.com", "licenses": [ "Apache-2.0" ] }, { "uniqueId": "androidx.window:window", "funding": [], "developers": [ { "name": "The Android Open Source Project" } ], "artifactVersion": "1.0.0", "description": "WindowManager Jetpack library. Currently only provides additional functionality on foldable devices.", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "https://cs.android.com/androidx/platform/frameworks/support" }, "name": "Jetpack WindowManager Library", "website": "https://developer.android.com/jetpack/androidx/releases/window#1.0.0", "licenses": [ "Apache-2.0" ] } ], "licenses": { "BSD-2-Clause": { "content": "Copyright (c) < ;match=.+>> All rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\n1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. \n\n2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.\n\nTHIS SOFTWARE IS PROVIDED BY <> \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL <> BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", "hash": "BSD-2-Clause", "internalHash": "BSD-2-Clause", "url": "https://spdx.org/licenses/BSD-2-Clause.html", "spdxId": "BSD-2-Clause", "name": "BSD 2-Clause \"Simplified\" License" }, "Apache-2.0": { "content": "Apache License\nVersion 2.0, January 2004\nhttp://www.apache.org/licenses/\n\nTERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n1. Definitions.\n\n\"License\" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.\n\n\"Licensor\" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.\n\n\"Legal Entity\" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, \"control\" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.\n\n\"You\" (or \"Your\") shall mean an individual or Legal Entity exercising permissions granted by this License.\n\n\"Source\" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.\n\n\"Object\" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.\n\n\"Work\" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).\n\n\"Derivative Works\" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.\n\n\"Contribution\" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, \"submitted\" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as \"Not a Contribution.\"\n\n\"Contributor\" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.\n\n2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.\n\n3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.\n\n4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:\n\n (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License.\n\n You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.\n\n5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.\n\n6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.\n\n7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.\n\n8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.\n\n9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.\n\nEND OF TERMS AND CONDITIONS\n\nAPPENDIX: How to apply the Apache License to your work.\n\nTo apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets \"[]\" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same \"printed page\" as the copyright notice for easier identification within third-party archives.\n\nCopyright [yyyy] [name of copyright owner]\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.", "hash": "Apache-2.0", "internalHash": "Apache-2.0", "url": "https://spdx.org/licenses/Apache-2.0.html", "spdxId": "Apache-2.0", "name": "Apache License 2.0" } } } ```

Did this on MacOS Ventura (and on 12.x before).

Tgo1014 commented 1 year ago

I'm having the same issue, I'm trying to understand what could cause it. Using gradle 7.6 worked, then I upgraded to gradle 8 and it failed but downgrading to 7.6 again still makes it fail.

mikepenz commented 1 year ago

@Tgo1014 thank you for the report. I have not had time to test Gradle 8. Any special log output which may indicate what happened? Could it be the gradle build cache?

Tgo1014 commented 1 year ago

Clearing my .gradle folder made it work. I tried once again to upgrade to 8.0 and I receive lots of this message when trying to run findLibraries:

--> Retrieved no components for: com.squareup.okhttp3:logging-interceptor:5.0.0-alpha.9
--> Retrieved no components for: com.squareup.okhttp3:okhttp-jvm:5.0.0-alpha.9
--> Retrieved no components for: com.squareup.okio:okio-jvm:3.1.0
--> Retrieved no components for: org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.7.20
...
mikepenz commented 1 year ago

It could be that Gradle 8 breaks the plugin. will need to investigate when I get time for it. Thanks for the report

Tgo1014 commented 1 year ago

I've found my issue!

I had org.gradle.unsafe.configuration-cache=true. I realized this could be the culprit because at the end of the no components list, it was displaying Configuration cache entry reused.. Disabling this property made the build work even with Gradle 8.0.

tassilo-posegga commented 1 year ago

Gaving the same issue as well when runniung the root task to exportLibraryDefinitions Also

image