Android: Add app link intent URI to channels projection
This a proper fix for https://bugs.dolphin-emu.org/issues/12561,
which was previously fixed by a hackfix in 98bdf3b1ce
.
This commit is contained in:
parent
e18053d307
commit
2b36587af7
|
@ -50,8 +50,9 @@ public class TvUtil
|
|||
|
||||
private static final String[] CHANNELS_PROJECTION = {
|
||||
TvContractCompat.Channels._ID,
|
||||
TvContract.Channels.COLUMN_DISPLAY_NAME,
|
||||
TvContractCompat.Channels.COLUMN_BROWSABLE
|
||||
TvContractCompat.Channels.COLUMN_DISPLAY_NAME,
|
||||
TvContractCompat.Channels.COLUMN_BROWSABLE,
|
||||
TvContractCompat.Channels.COLUMN_APP_LINK_INTENT_URI
|
||||
};
|
||||
private static final String LEANBACK_PACKAGE = "com.google.android.tvlauncher";
|
||||
|
||||
|
|
Loading…
Reference in New Issue