From 460555fc8dac7f1d106e8eb832cc8e71da00eb4f Mon Sep 17 00:00:00 2001 From: jimlyas Date: Tue, 31 Mar 2026 15:10:41 +0700 Subject: [PATCH 1/6] chore: Implement dokka to the Root Project --- .github/workflows/generate_dokka.yml | 4 +- app/build.gradle.kts | 1 + app/packages.md | 233 +++++++++++++++++++++++++++ build.gradle.kts | 14 +- docs/.gitignore | 1 - docs/build.gradle.kts | 13 -- library/build.gradle.kts | 3 +- library/packages.md | 80 +++++++++ settings.gradle.kts | 2 +- 9 files changed, 332 insertions(+), 19 deletions(-) create mode 100644 app/packages.md delete mode 100644 docs/.gitignore delete mode 100644 docs/build.gradle.kts create mode 100644 library/packages.md diff --git a/.github/workflows/generate_dokka.yml b/.github/workflows/generate_dokka.yml index e3dac385751..effa862cba9 100644 --- a/.github/workflows/generate_dokka.yml +++ b/.github/workflows/generate_dokka.yml @@ -58,10 +58,10 @@ jobs: run: | cd $GITHUB_WORKSPACE/src/ chmod +x gradlew - ./gradlew docs:dokkaGeneratePublicationHtml + ./gradlew dokkaGeneratePublicationHtml - name: Copy Dokka - run: cp -r $GITHUB_WORKSPACE/src/docs/build/dokka/html/* $GITHUB_WORKSPACE/dokka/ + run: cp -r $GITHUB_WORKSPACE/build/dokka/html/* $GITHUB_WORKSPACE/dokka/ - name: Push builds run: | diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 97d24c4fbd0..7fd8f8fbbf8 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -286,6 +286,7 @@ dokka { moduleName = "App" dokkaSourceSets { main { + includes.setFrom("packages.md") analysisPlatform = KotlinPlatform.JVM documentedVisibilities( VisibilityModifier.Public, diff --git a/app/packages.md b/app/packages.md new file mode 100644 index 00000000000..3e8c1807fb6 --- /dev/null +++ b/app/packages.md @@ -0,0 +1,233 @@ +# Module App + +CloudStream Android application module providing the user interface and core functionality for the +streaming app. + +# Package com.lagradost.cloudstream3 + +Root package containing core application classes and main entry points. + +## Main Classes + +- **CloudStreamApp** - Application class with initialization and crash handling +- **MainActivity** - Main activity handling app lifecycle +- **CommonActivity** - Base activity class with common functionality +- **AcraApplication** - Crash reporting integration + +# Package com.lagradost.cloudstream3.actions + +Action implementations for handling various video playback intents and external app integration. + +# Package com.lagradost.cloudstream3.actions.temp + +External app integration packages for video playback: +- VLC, MX Player, MPV, LibreTorrent, Just Player, etc. +- Web video casting and clipboard actions +- ChromeCast support + +# Package com.lagradost.cloudstream3.mvvm + +MVVM architecture components including ViewModel extensions and lifecycle management. + +# Package com.lagradost.cloudstream3.network + +Network utilities including: + +- RequestsHelper - HTTP request handling +- CloudflareKiller - Cloudflare bypass +- DohProviders - DNS over HTTPS providers + +# Package com.lagradost.cloudstream3.plugins + +Plugin management system: + +- Plugin - Plugin data model +- PluginManager - Plugin lifecycle management +- RepositoryManager - Plugin repository handling + +# Package com.lagradost.cloudstream3.receivers + +Broadcast receivers for system events and notifications. + +# Package com.lagradost.cloudstream3.services + +Background services: + +- VideoDownloadService - Video download handling +- DownloadQueueService - Download queue management +- SubscriptionWorkManager - Anime/manga subscription updates +- BackupWorkManager - Data backup automation + +# Package com.lagradost.cloudstream3.subtitles + +Subtitle processing and selection utilities. + +# Package com.lagradost.cloudstream3.syncproviders + +Sync providers for tracking anime/manga watch history: + +- AniListApi - AniList integration +- MALApi - MyAnimeList integration +- KitsuApi - Kitsu integration +- SimklApi - SIMKL integration + +# Package com.lagradost.cloudstream3.syncproviders.providers + +API implementations for sync providers: + +- AniListApi - AniList API implementation +- MALApi - MyAnimeList API implementation +- KitsuApi - Kitsu API implementation +- SimklApi - SIMKL API implementation +- LocalList - Local list storage +- OpenSubtitlesApi - OpenSubtitles API +- Subdl, Addic7ed - Subtitle sources + +# Package com.lagradost.cloudstream3.ui + +User interface components including player, fragments, and dialogs. + +# Package com.lagradost.cloudstream3.ui.account + +Account management: +- AccountSelectActivity - Account selection UI +- AccountViewModel - Account state management +- AccountAdapter - Account list adapter + +# Package com.lagradost.cloudstream3.ui.download + +Download management: + +- DownloadFragment - Download UI +- DownloadViewModel - Download state management +- DownloadAdapter - Download list adapter + +# Package com.lagradost.cloudstream3.ui.download.button + +Download button components: +- DownloadButton - Download button UI +- PieFetchButton - Pie-style progress button +- BaseFetchButton - Base button implementation + +# Package com.lagradost.cloudstream3.ui.download.queue + +Download queue management: +- DownloadQueueFragment - Queue UI +- DownloadQueueViewModel - Queue state management +- DownloadQueueAdapter - Queue list adapter + +# Package com.lagradost.cloudstream3.ui.home + +Home screen: +- HomeFragment - Home UI +- HomeViewModel - Home state management +- HomeParentItemAdapter, HomeChildItemAdapter - List adapters + +# Package com.lagradost.cloudstream3.ui.library + +Library view: +- LibraryFragment - Library UI +- LibraryViewModel - Library state management +- PageAdapter, ViewpagerAdapter - View pager adapters + +# Package com.lagradost.cloudstream3.ui.player + +Video player: +- FullScreenPlayer - Full screen video player +- DownloadedPlayerActivity - Downloaded video playback +- PlayerGeneratorViewModel - Player state management +- ExtractorLinkGenerator - Stream link generation + +# Package com.lagradost.cloudstream3.ui.player.source_priority + +Stream quality management: +- SourcePriorityDialog - Source priority UI +- QualityProfileDialog - Quality profile settings +- PriorityAdapter, ProfilesAdapter - Adapters + +# Package com.lagradost.cloudstream3.ui.quicksearch + +Quick search functionality: +- QuickSearchFragment - Quick search UI + +# Package com.lagradost.cloudstream3.ui.result + +Result/details view: +- ResultFragment - Media details UI +- ResultViewModel2 - Details state management +- EpisodeAdapter - Episode list adapter +- ActorAdaptor - Actor/cast adapter + +# Package com.lagradost.cloudstream3.ui.search + +Search functionality: +- SearchFragment - Search UI +- SearchViewModel - Search state management +- SearchAdaptor, SearchHistoryAdaptor - Search adapters +- SearchSuggestionAdapter - Search suggestions + +# Package com.lagradost.cloudstream3.ui.settings + +Settings and preferences: + +- SettingsFragment - Main settings UI +- SettingsGeneral, SettingsPlayer, SettingsUI - Settings categories +- SettingsProviders, SettingsAccount, SettingsUpdates - Specific settings + +# Package com.lagradost.cloudstream3.ui.settings.extensions + +Extensions management: +- ExtensionsFragment - Extensions UI +- PluginsFragment, PluginDetailsFragment - Plugin management +- ExtensionsViewModel, PluginsViewModel - State management + +# Package com.lagradost.cloudstream3.ui.settings.testing + +Testing utilities: +- TestFragment - Testing UI +- TestViewModel - Test state management +- TestResultAdapter - Test results adapter + +# Package com.lagradost.cloudstream3.ui.settings.utils + +Settings utilities: +- DirectoryPicker - Directory selection dialog + +# Package com.lagradost.cloudstream3.ui.setup + +Initial setup wizard: +- SetupFragmentLanguage - Language setup +- SetupFragmentLayout - Layout preferences +- SetupFragmentProviderLanguage - Provider language settings +- SetupFragmentExtensions - Extension setup + +# Package com.lagradost.cloudstream3.ui.subtitles + +Subtitle management: +- SubtitlesFragment - Subtitle selection UI +- ChromecastSubtitlesFragment - Chromecast subtitle sync + +# Package com.lagradost.cloudstream3.utils + +Utility functions: + +- DataStore - Preferences storage +- UIHelper - UI utilities +- DownloadUtils - Download helpers +- ImageUtil - Image processing + +# Package com.lagradost.cloudstream3.utils.downloader + +Download utilities: +- DownloadManager - Download management +- DownloadQueueManager - Queue management +- DownloadFileManagement - File handling +- DownloadUtils - Core download utilities + +# Package com.lagradost.cloudstream3.widget + +Custom Android widgets: + +- LinearRecycleViewLayoutManager +- CenterZoomLayoutManager +- FlowLayout diff --git a/build.gradle.kts b/build.gradle.kts index cca263dd422..51df8bf771f 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -3,7 +3,7 @@ plugins { alias(libs.plugins.android.lint) apply false alias(libs.plugins.android.multiplatform.library) apply false alias(libs.plugins.buildkonfig) apply false // Universal build config - alias(libs.plugins.dokka) apply false + alias(libs.plugins.dokka) apply true alias(libs.plugins.kotlin.android) apply false alias(libs.plugins.kotlin.jvm) apply false alias(libs.plugins.kotlin.multiplatform) apply false @@ -15,3 +15,15 @@ allprojects { failOnNoDiscoveredTests = false } } + +dependencies { + dokka(project(":app:")) + dokka(project(":library:")) +} + +dokka { + moduleName = "CloudStream" + pluginsConfiguration.html { + footerMessage.set("© CloudStream") + } +} \ No newline at end of file diff --git a/docs/.gitignore b/docs/.gitignore deleted file mode 100644 index 42afabfd2ab..00000000000 --- a/docs/.gitignore +++ /dev/null @@ -1 +0,0 @@ -/build \ No newline at end of file diff --git a/docs/build.gradle.kts b/docs/build.gradle.kts deleted file mode 100644 index 8f5be2a2dbe..00000000000 --- a/docs/build.gradle.kts +++ /dev/null @@ -1,13 +0,0 @@ -plugins { - alias(libs.plugins.kotlin.jvm) - alias(libs.plugins.dokka) -} - -dependencies { - dokka(project(":app:")) - dokka(project(":library:")) -} - -dokka { - moduleName = "Cloudstream" -} diff --git a/library/build.gradle.kts b/library/build.gradle.kts index 14ef644f056..edf1c176a5e 100644 --- a/library/build.gradle.kts +++ b/library/build.gradle.kts @@ -6,7 +6,7 @@ import org.jetbrains.kotlin.gradle.dsl.JvmTarget import org.jetbrains.kotlin.gradle.tasks.KotlinJvmCompile plugins { - id("maven-publish") // Gradle core plugin + `maven-publish` alias(libs.plugins.kotlin.multiplatform) alias(libs.plugins.android.lint) alias(libs.plugins.android.multiplatform.library) @@ -98,6 +98,7 @@ dokka { moduleName = "Library" dokkaSourceSets { configureEach { + includes.setFrom("packages.md") analysisPlatform = KotlinPlatform.AndroidJVM documentedVisibilities( VisibilityModifier.Public, diff --git a/library/packages.md b/library/packages.md new file mode 100644 index 00000000000..05f428f26f6 --- /dev/null +++ b/library/packages.md @@ -0,0 +1,80 @@ +# Module Library + +CloudStream multiplatform library providing core streaming functionality, extractors, and APIs for +both common and Android platforms. + +# Package com.lagradost.cloudstream3 + +Root package with core library classes and interfaces. + +## Main Classes + +- **MainAPI** - Core API interface defining provider functionality +- **MainActivity** - Activity interface for UI implementation +- **ParCollections** - Parallel collection utilities + +# Package com.lagradost.cloudstream3.extractors + +Video extractors for various streaming hosts (100+ extractors). Includes implementations for: + +- Streamplay, StreamSB, StreamTape +- Vidplay, Vidstream, VidMoly +- Videa, VkExtractor +- DoodExtractor +- MixDrop, Mp4Upload +- YoutubeExtractor +- And many more hosting services + +# Package com.lagradost.cloudstream3.extractors.helper + +Extractor helper utilities for specific streaming services: + +- GogoHelper - Gogoanime streaming support +- NineAnimeHelper - 9Anime streaming support +- WcoHelper - WatchCartoonOnline support +- VstreamhubHelper - Vstreamhub support +- AsianEmbedHelper - Asian drama embed support +- AesHelper, CryptoJSHelper - Cryptography utilities + +# Package com.lagradost.cloudstream3.metaproviders + +Meta providers for content aggregation from multiple sources. + +# Package com.lagradost.cloudstream3.mvvm + +MVVM extensions and architecture components for reactive programming. + +# Package com.lagradost.cloudstream3.network + +Network utilities including WebViewResolver for handling JavaScript-based video sources. + +# Package com.lagradost.cloudstream3.plugins + +Plugin system interfaces: + +- BasePlugin - Base plugin class +- CloudstreamPlugin - Plugin annotation and entry point + +# Package com.lagradost.cloudstream3.syncproviders + +Sync provider interfaces for anime/manga tracking integration. + +# Package com.lagradost.cloudstream3.utils + +Utility functions: + +- SubtitleHelper - Subtitle processing +- M3u8Helper - HLS stream handling +- JsUnpacker - JavaScript unpacking utilities +- Coroutines - Coroutine extensions +- StringUtils - String utilities +- AppUtils - Application utilities + +# Package com.lagradost.api + +Android-specific API utilities. + +## Main Classes + +- **Log** - Logging utility +- **ContextHelper** - Android context helper diff --git a/settings.gradle.kts b/settings.gradle.kts index 73bf5a1958b..b43407be129 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -18,4 +18,4 @@ dependencyResolutionManagement { } rootProject.name = "CloudStream" -include(":app", ":library", ":docs") +include(":app", ":library") From 9cf58459cc5c244be6e438fbdbb7e34589ca5bbe Mon Sep 17 00:00:00 2001 From: jimlyas Date: Wed, 1 Apr 2026 08:54:19 +0700 Subject: [PATCH 2/6] chore: Implement dependency verification --- gradle.properties | 3 + gradle/verification-metadata.xml | 4957 ++++++++++++++++++++++++++++++ 2 files changed, 4960 insertions(+) create mode 100644 gradle/verification-metadata.xml diff --git a/gradle.properties b/gradle.properties index 0168ae437bd..c742ba966a6 100644 --- a/gradle.properties +++ b/gradle.properties @@ -26,3 +26,6 @@ org.gradle.configuration-cache=true # Compiling with Java 8 is deprecated but we still use it for now android.javaCompile.suppressSourceTargetDeprecationWarning=true + +# Enable verbose logging for dependency verification +org.gradle.dependency.verification.console=verbose diff --git a/gradle/verification-metadata.xml b/gradle/verification-metadata.xml new file mode 100644 index 00000000000..fbc0c9796a2 --- /dev/null +++ b/gradle/verification-metadata.xml @@ -0,0 +1,4957 @@ + + + + true + false + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + From f0f909002a8393e51671bf225e9138209363a79e Mon Sep 17 00:00:00 2001 From: jimlyas Date: Wed, 1 Apr 2026 12:37:04 +0700 Subject: [PATCH 3/6] chore: Fix dependency verification from verification-metadata.xml --- gradle/verification-metadata.xml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/gradle/verification-metadata.xml b/gradle/verification-metadata.xml index fbc0c9796a2..3166f18a0cc 100644 --- a/gradle/verification-metadata.xml +++ b/gradle/verification-metadata.xml @@ -5,8 +5,12 @@ false - - + + + + + + From 9a84809f2c5c63ff6b33fb2c4cb8a6a872d7436b Mon Sep 17 00:00:00 2001 From: jimlyas Date: Wed, 1 Apr 2026 14:16:14 +0700 Subject: [PATCH 4/6] chore: trust BOM dependency as it doesn't have artifact to checksum --- gradle/verification-metadata.xml | 1 + 1 file changed, 1 insertion(+) diff --git a/gradle/verification-metadata.xml b/gradle/verification-metadata.xml index 3166f18a0cc..8ce1095e030 100644 --- a/gradle/verification-metadata.xml +++ b/gradle/verification-metadata.xml @@ -9,6 +9,7 @@ + From 9e4a27720de3b72c39f312b2ec01cb10b671f210 Mon Sep 17 00:00:00 2001 From: jimlyas Date: Wed, 1 Apr 2026 14:51:34 +0700 Subject: [PATCH 5/6] chore: trust OS specific artifacts --- gradle/verification-metadata.xml | 1 + 1 file changed, 1 insertion(+) diff --git a/gradle/verification-metadata.xml b/gradle/verification-metadata.xml index 8ce1095e030..45685e133b1 100644 --- a/gradle/verification-metadata.xml +++ b/gradle/verification-metadata.xml @@ -7,6 +7,7 @@ + From 5a32b4c0d68382ab07040cd50be3296001cb2ca3 Mon Sep 17 00:00:00 2001 From: jimlyas Date: Thu, 2 Apr 2026 09:37:45 +0700 Subject: [PATCH 6/6] chore: revert dependency verification changes --- gradle.properties | 3 - gradle/verification-metadata.xml | 4963 ------------------------------ 2 files changed, 4966 deletions(-) delete mode 100644 gradle/verification-metadata.xml diff --git a/gradle.properties b/gradle.properties index c742ba966a6..0168ae437bd 100644 --- a/gradle.properties +++ b/gradle.properties @@ -26,6 +26,3 @@ org.gradle.configuration-cache=true # Compiling with Java 8 is deprecated but we still use it for now android.javaCompile.suppressSourceTargetDeprecationWarning=true - -# Enable verbose logging for dependency verification -org.gradle.dependency.verification.console=verbose diff --git a/gradle/verification-metadata.xml b/gradle/verification-metadata.xml deleted file mode 100644 index 45685e133b1..00000000000 --- a/gradle/verification-metadata.xml +++ /dev/null @@ -1,4963 +0,0 @@ - - - - true - false - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -