diff options
author | Evan Charlton <evanc@google.com> | 2014-09-15 09:25:39 -0700 |
---|---|---|
committer | Evan Charlton <evanc@google.com> | 2014-09-15 09:26:43 -0700 |
commit | b6b3172577825d7de4260c7f696b389b4cd9c558 (patch) | |
tree | e6e170b54a5df600f56b90df059c6e1d586ed056 | |
parent | 9dc924c8bcc0bc8d996452e9ce3215b5f064962e (diff) |
Use the BROADCAST_STICKY permission
In order to be able to send sticky broadcasts (needed for InCallUI
visibility), require the BROADCAST_STICKY permission.
Bug: 16988478
Change-Id: I7805071ede8c1dd82d446e868ab577d9c9c1f8b8
-rw-r--r-- | AndroidManifest.xml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml index 375980840..477a44cee 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -47,6 +47,7 @@ <uses-permission android:name="android.permission.ALLOW_ANY_CODEC_FOR_PLAYBACK" /> <uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT"/> <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" /> + <uses-permission android:name="android.permission.BROADCAST_STICKY" /> <!-- This tells the activity manager to not delay any of our activity start requests, even if they happen immediately after the user presses home. --> |