Skip to content

Commit

Permalink
Add workaround for TCL Android 12 Smart TVs
Browse files Browse the repository at this point in the history
  • Loading branch information
algrimes authored and FreedomBen committed Aug 2, 2024
1 parent 02a654f commit 53a5a44
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions server/src/main/java/com/genymobile/scrcpy/Workarounds.java
Original file line number Diff line number Diff line change
Expand Up @@ -66,11 +66,13 @@ public static void apply(boolean audio, boolean camera) {
// - <https://github.com/Genymobile/scrcpy/issues/940>
// - <https://github.com/Genymobile/scrcpy/issues/994>
mustFillAppInfo = true;
} else if (Build.BRAND.equalsIgnoreCase("honor") || Build.MANUFACTURER.equalsIgnoreCase("skyworth")) {
} else if (Build.BRAND.equalsIgnoreCase("honor") || Build.MANUFACTURER.equalsIgnoreCase("skyworth") || Build.BRAND.equalsIgnoreCase("tcl")) {
// More workarounds must be applied for Honor devices:
// - <https://github.com/Genymobile/scrcpy/issues/4015>
// and Skyworth devices:
// for Skyworth devices:
// - <https://github.com/Genymobile/scrcpy/issues/4922>
// and for TCL devices:
// - <https://github.com/Genymobile/scrcpy/issues/5140>
//
// The system context must not be set for all devices, because it would cause other problems:
// - <https://github.com/Genymobile/scrcpy/issues/4015#issuecomment-1595382142>
Expand Down

0 comments on commit 53a5a44

Please sign in to comment.