summaryrefslogtreecommitdiff
path: root/Settings/AndroidManifest.xml
diff options
context:
space:
mode:
Diffstat (limited to 'Settings/AndroidManifest.xml')
-rw-r--r--Settings/AndroidManifest.xml73
1 files changed, 68 insertions, 5 deletions
diff --git a/Settings/AndroidManifest.xml b/Settings/AndroidManifest.xml
index 3502483ed..db2d4cec2 100644
--- a/Settings/AndroidManifest.xml
+++ b/Settings/AndroidManifest.xml
@@ -39,6 +39,7 @@
<uses-permission android:name="android.permission.FORCE_STOP_PACKAGES"/>
<uses-permission android:name="android.permission.GET_ACCOUNTS_PRIVILEGED"/>
<uses-permission android:name="android.permission.GET_PACKAGE_SIZE"/>
+ <uses-permission android:name="android.permission.HIDE_NON_SYSTEM_OVERLAY_WINDOWS"/>
<uses-permission android:name="android.permission.INJECT_EVENTS"/>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.MANAGE_ACCOUNTS"/>
@@ -94,7 +95,7 @@
android:exported="true"
android:label="@string/settings_app_name"
android:theme="@style/TvSettingsActivityTheme">
- <intent-filter>
+ <intent-filter android:priority="1">
<action android:name="android.intent.action.MAIN"/>
<action android:name="android.settings.SETTINGS"/>
<category android:name="android.intent.category.DEFAULT"/>
@@ -636,9 +637,14 @@
android:excludeFromRecents="true"
android:exported="true"
android:theme="@style/TvSettingsActivityTheme">
+ <intent-filter android:priority="1">
+ <action android:name="android.settings.INPUT_METHOD_SETTINGS"/>
+ <category android:name="android.intent.category.VOICE_LAUNCH" />
+ <category android:name="android.intent.category.BROWSABLE"/>
+ <category android:name="android.intent.category.DEFAULT"/>
+ </intent-filter>
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
- <action android:name="android.settings.INPUT_METHOD_SETTINGS"/>
<category android:name="android.intent.category.VOICE_LAUNCH"/>
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
@@ -716,7 +722,7 @@
android:showWhenLocked="true"
android:taskAffinity=""
android:turnScreenOn="true">
- <intent-filter>
+ <intent-filter android:priority="1">
<action android:name="com.google.android.intent.action.CONNECT_INPUT"/>
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
@@ -926,8 +932,8 @@
android:excludeFromRecents="true"
android:exported="true"
android:label="@string/bluetooth_permission_request"
- android:permission="android.permission.BLUETOOTH"
- android:theme="@android:style/Theme.NoDisplay">
+ android:permission="android.permission.BLUETOOTH_ADVERTISE"
+ android:theme="@style/TvSettingsActivityTheme">
<intent-filter android:priority="1">
<action android:name="android.bluetooth.adapter.action.REQUEST_DISCOVERABLE"/>
<action android:name="android.bluetooth.adapter.action.REQUEST_ENABLE"/>
@@ -1144,6 +1150,18 @@
</activity>
<activity
+ android:name=".accessibility.AccessibilityColorCorrectionActivity"
+ android:configChanges="keyboard|keyboardHidden|navigation"
+ android:excludeFromRecents="true"
+ android:exported="true"
+ android:theme="@style/TvSettingsActivityTheme">
+ <intent-filter android:priority="1" >
+ <action android:name="android.settings.ACCESSIBILITY_COLOR_CORRECTION_TV_OEM_LINK" />
+ <category android:name="android.intent.category.DEFAULT" />
+ </intent-filter>
+ </activity>
+
+ <activity
android:name=".oemlink.AccessibilityServiceActivity"
android:configChanges="keyboard|keyboardHidden|navigation"
android:excludeFromRecents="true"
@@ -1228,6 +1246,13 @@
android:exported="false">
</receiver>
+ <activity
+ android:name=".device.LimitNetworkInStandbyConfirmationDialogActivity"
+ android:theme="@style/Transparent"
+ android:excludeFromRecents="true"
+ android:launchMode="singleTop"
+ android:exported="false" />
+
<receiver
android:name=".BootReceiver"
android:enabled="true"
@@ -1237,6 +1262,15 @@
</intent-filter>
</receiver>
+ <receiver
+ android:name=".PreBootCompleteReceiver"
+ android:enabled="true"
+ android:exported="true">
+ <intent-filter>
+ <action android:name="android.intent.action.PRE_BOOT_COMPLETED"/>
+ </intent-filter>
+ </receiver>
+
<activity android:name=".RemoteBugreportActivity"
android:excludeFromRecents="true"
android:exported="true"
@@ -1270,6 +1304,35 @@
</intent-filter>
</activity>
+ <service android:name=".device.eco.EnergyModesStatsLogJobService"
+ android:permission="android.permission.BIND_JOB_SERVICE" />
+
+ <provider
+ android:name=".device.eco.EnergyModesContentProvider"
+ android:authorities="com.android.tv.settings.device.eco.energymodes"
+ android:exported="true">
+ <intent-filter>
+ <action android:name="com.android.tv.settings.ENERGY_MODES_PROVIDER"/>
+ </intent-filter>
+ </provider>
+
+ <activity
+ android:name=".device.eco.EnergyModesActivity"
+ android:configChanges="keyboard|keyboardHidden|navigation"
+ android:excludeFromRecents="true"
+ android:exported="true"
+ android:theme="@style/TvSettingsActivityTheme">
+ <intent-filter android:priority="1" >
+ <action android:name="com.google.android.tv.settings.energymodes"/>
+ <category android:name="android.intent.category.DEFAULT"/>
+ </intent-filter>
+ </activity>
+
+ <activity android:name=".device.eco.EnergyModeConfirmationActivity"
+ android:theme="@style/Theme.Reset"
+ android:configChanges="keyboard|keyboardHidden|navigation"
+ android:excludeFromRecents="true" />
+
<receiver
android:name=".GlobalKeyReceiver"
android:exported="true">