summaryrefslogtreecommitdiffstats
path: root/packages/SystemUI/AndroidManifest.xml
diff options
context:
space:
mode:
authorJason Monk <jmonk@google.com>2015-07-16 08:58:15 -0400
committerJason Monk <jmonk@google.com>2015-07-22 14:40:53 -0400
commit431ad737a4752e9325894211c28bb0f0f97c00a7 (patch)
treec1f7f5495a0e851194cd70fe8f94083ea0844454 /packages/SystemUI/AndroidManifest.xml
parent2ba3fec6e0222754d93ed7a491354164d113ad6e (diff)
downloadframeworks_base-431ad737a4752e9325894211c28bb0f0f97c00a7.zip
frameworks_base-431ad737a4752e9325894211c28bb0f0f97c00a7.tar.gz
frameworks_base-431ad737a4752e9325894211c28bb0f0f97c00a7.tar.bz2
Move tuner enable point to QS
Long clicking on settings gear in QS causes it to accelarate and spin, when released it will open and enable the tuner. On first opening there will be a warning dialog. Also add way to disable tuner from tuner screen. This way it can be removed from its former home in Developer Settings. All tuner settings are reset when disabled to match developer settings behavior. Bug: 22462605 Change-Id: Ie700a6a15e6c3caccf7cd1885da73328e6fac6ab
Diffstat (limited to 'packages/SystemUI/AndroidManifest.xml')
-rw-r--r--packages/SystemUI/AndroidManifest.xml8
1 files changed, 8 insertions, 0 deletions
diff --git a/packages/SystemUI/AndroidManifest.xml b/packages/SystemUI/AndroidManifest.xml
index 6e5dc3f..fea7f94 100644
--- a/packages/SystemUI/AndroidManifest.xml
+++ b/packages/SystemUI/AndroidManifest.xml
@@ -405,5 +405,13 @@
android:exported="true"
android:singleUser="true"
android:permission="android.permission.BIND_DREAM_SERVICE" />
+
+ <receiver
+ android:name=".tuner.TunerService$ClearReceiver"
+ android:exported="false">
+ <intent-filter>
+ <action android:name="com.android.systemui.action.CLEAR_TUNER" />
+ </intent-filter>
+ </receiver>
</application>
</manifest>