Refactor to decouple plugins and extensions from main branch - #655
Merged
Conversation
… to plugin-extentions branch)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request removes all code and dependencies related to the sideloadable plugin system from the project. This includes the removal of plugin-related Gradle dependencies, ProGuard rules, data storage, and code safety checks, as well as the removal of plugin repository and scraper sync logic from the cloud sync subsystem. The result is a significant simplification of the codebase, eliminating all support for user-installed plugins.
The most important changes are:
Build system and dependency cleanup:
sideloadflavor fromapp/build.gradle.kts, including QuickJS, Jackson, NiceHttp, Conscrypt, CloudStream, Rhino, RE2J, and Crypto-JS libraries. [1] [2]FEATURE_PLUGINS_ENABLEDbuild config field from all build variants inapp/build.gradle.kts. [1] [2]Code and data layer removal:
PluginDataStore,PluginSafety, andTestDiagnosticsclasses, fully removing plugin-related data storage, plugin validation, and diagnostics code. [1] [2] [3]Cloud sync and integration removal:
CloudSyncRepository, including both backup and restore flows, and the associated dependency injection. [1] [2] [3]ProGuard configuration:
app/proguard-rules.pro.These changes fully remove sideloadable plugin support and all related infrastructure from the project.… to plugin-extentions branch)