Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove category home from TvSettings as it causes conflict. #1704

Open
wants to merge 1 commit into
base: celadon/r/mr0/stable
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
From 8f9a102eb54a10074b0593efde582c26bc3686b6 Mon Sep 17 00:00:00 2001
From: Tanuj Tekriwal <[email protected]>
Date: Thu, 15 Dec 2022 09:31:35 +0530
Subject: [PATCH] Dont't add TvSettings to category Home

When TvSettings is added to category home with TvSampleLeanbackLauncher
then it causes conflict between the 2 and stops Android boot.

Tracked-On: OAM-104028
Signed-off-by: Tanuj Tekriwal <[email protected]>
---
Settings/AndroidManifest.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Settings/AndroidManifest.xml b/Settings/AndroidManifest.xml
index 63cdf7207..53488e873 100644
--- a/Settings/AndroidManifest.xml
+++ b/Settings/AndroidManifest.xml
@@ -693,7 +693,7 @@
android:theme="@style/FallbackHome">
<intent-filter android:priority="-1000">
<action android:name="android.intent.action.MAIN"/>
- <category android:name="android.intent.category.HOME"/>
+ <!--category android:name="android.intent.category.HOME"/-->
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
</activity>
--
2.17.1

Loading