aboutsummaryrefslogtreecommitdiff
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authorTyler Gunn <tgunn@google.com>2020-12-09 09:57:51 -0800
committerTyler Gunn <tgunn@google.com>2020-12-11 16:13:33 +0000
commita8d6b1ff4a8c188ffdbff32dd2a63fda1b55b883 (patch)
tree2046844cae9e4ef82a9db6f864ccb9659624f90a /AndroidManifest.xml
parent4c94266286279d545f3a770bad8a641d46164ee4 (diff)
downloadContactsProvider-a8d6b1ff4a8c188ffdbff32dd2a63fda1b55b883.tar.gz
Provide allow-list to recipient of voicemail intents.
This enables an app receiving the intent to launch a background activity to perform more time consuming (but time sensitive) voicemail related work. Test: Manual test; verified that when new VVM broadcast is sent that the broadcast options are set to allow-list the recipient for 10sec. Bug: 173155475 Merged-In: I4768ca3aa607bf3341ac8fe89fa074fe65dfedea Change-Id: I4768ca3aa607bf3341ac8fe89fa074fe65dfedea
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r--AndroidManifest.xml2
1 files changed, 2 insertions, 0 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 9542e6d9..be62fc16 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -4,6 +4,8 @@
android:sharedUserLabel="@string/sharedUserLabel">
<uses-permission android:name="android.permission.BIND_DIRECTORY_SEARCH" />
+ <!-- For sending voicemail intents -->
+ <uses-permission android:name="android.permission.CHANGE_DEVICE_IDLE_TEMP_WHITELIST" />
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
<uses-permission android:name="android.permission.GET_ACCOUNTS_PRIVILEGED" />
<uses-permission android:name="android.permission.INTERACT_ACROSS_USERS" />