You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hey , it looks like in one of the recent commits (598df33) the plugin system dependencies and the FEATURE_PLUGINS_ENABLED flags were accidentally removed from app/build.gradle.kts (probably during a merge conflict resolution). This caused the Plugins menu to disappear entirely from the settings. This PR restores them so the feature works again
Hey, tested this branch locally — build passes and installs fine, but the app crashes on every launch with:
▎
▎ java.lang.NoSuchMethodError: No virtual method addLast(LockFreeLinkedListNode;)V
▎ in class kotlinx.coroutines.internal.LockFreeLinkedListHead (classes22.dex)
▎
▎ One of the new sideload deps (likely CloudStream3 or NiceHttp) bundles an older kotlinx-coroutines-core internally. That older class wins in the dex merge and is missing addLast() which the app expects at runtime — instant crash before anything renders.
▎
▎ Fix: force coroutines to 1.7.3 in the resolution strategy so it overrides the transitive version:
▎
▎ configurations.all {
▎ resolutionStrategy {
▎ force("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3")
▎ force("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3")
▎ }
▎ }
▎
▎ Or exclude coroutines from the conflicting dep:
▎ add("sideloadImplementation", "com.github.recloudstream.cloudstream:library-android:v4.7.0") {
▎ exclude(group = "org.jetbrains.kotlinx", module = "kotlinx-coroutines-core")
▎ exclude(group = "org.mozilla", module = "rhino")
▎ }
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
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.
Hey , it looks like in one of the recent commits (598df33) the plugin system dependencies and the FEATURE_PLUGINS_ENABLED flags were accidentally removed from app/build.gradle.kts (probably during a merge conflict resolution). This caused the Plugins menu to disappear entirely from the settings. This PR restores them so the feature works again