summaryrefslogtreecommitdiffstats
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authorBrandon Maxwell <maxwelb@google.com>2016-01-14 15:31:42 -0800
committerBrandon Maxwell <maxwelb@google.com>2016-01-14 17:09:28 -0800
commit6773df0b1a6f8fd7f50c7ddc7a0fcf21c9df0253 (patch)
treed02ea8f9731462ec5997c93a6e02b0023991d597 /AndroidManifest.xml
parent662aed1de350c38751a962528651535a35a22789 (diff)
downloadandroid_packages_apps_Dialer-6773df0b1a6f8fd7f50c7ddc7a0fcf21c9df0253.tar.gz
android_packages_apps_Dialer-6773df0b1a6f8fd7f50c7ddc7a0fcf21c9df0253.tar.bz2
android_packages_apps_Dialer-6773df0b1a6f8fd7f50c7ddc7a0fcf21c9df0253.zip
Changes needed to make Incoming calls work while fbe locked
+ Necessary in-call components are marked as encryptionAware. + Added needed null checks since the filtered number table isn't available when fbe locked. Bug=26542121 Change-Id: I316cd62c1faec471356794db433b9f631f293c4f
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r--AndroidManifest.xml6
1 files changed, 4 insertions, 2 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 91c91b940..67161ad5f 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -294,7 +294,8 @@
android:launchMode="singleInstance"
android:configChanges="keyboardHidden"
android:exported="false"
- android:screenOrientation="nosensor" >
+ android:screenOrientation="nosensor"
+ android:encryptionAware="true" >
</activity>
<!-- BroadcastReceiver for receiving Intents from Notification mechanism. -->
@@ -302,7 +303,8 @@
android:exported="false" />
<service android:name="com.android.incallui.InCallServiceImpl"
- android:permission="android.permission.BIND_INCALL_SERVICE" >
+ android:permission="android.permission.BIND_INCALL_SERVICE"
+ android:encryptionAware="true" >
<meta-data android:name="android.telecom.IN_CALL_SERVICE_UI" android:value="true" />
<intent-filter>
<action android:name="android.telecom.InCallService"/>