Skip to content

Commit

Permalink
fix: exclude more broken apps by ddefault
Browse files Browse the repository at this point in the history
  • Loading branch information
timschneeb committed Feb 8, 2023
1 parent a212ff8 commit 628bf83
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ class AppCompatibilityFragment : Fragment() {
private val knownQuirks = mapOf(
arrayOf(
"com.google.android.youtube",
"com.google.android.apps.youtube.music",
"com.vanced.android.youtube",
"app.revanced.android.youtube"
) to R.string.app_compat_quirk_voice_search
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,13 @@ class MutedSessionManager(private val context: Context) {
private var excludedUids = arrayOf<Int>()
private val excludedPackages = arrayOf(
context.packageName,

// Non-music apps known to cause issues
"com.google.android.googlequicksearchbox",
"com.google.android.as",
"com.kieronquinn.app.pixelambientmusic"
"com.kieronquinn.app.pixelambientmusic",
"com.draftkings.sportsbook",
"com.samsung.gpuwatchapp"
)

init {
Expand Down

0 comments on commit 628bf83

Please sign in to comment.