diff options
author | Jeff Sharkey <jsharkey@android.com> | 2016-03-17 22:18:06 +0000 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2016-03-17 22:18:06 +0000 |
commit | b99c778ef6c9fd5bf71f7b8573e3d6c293eb4ba9 (patch) | |
tree | 3a65f6afcf50aa5eae4dee0327015e2c66c3f1a3 | |
parent | 2d60e94466e63df23f80ba9f9e97c6f4588c2589 (diff) | |
parent | 301a724210cf9ed69b68c5cab92e87a7cccb73f4 (diff) |
Merge "Follow framework refactoring." into nyc-dev am: 8196a91
am: 301a724
* commit '301a724210cf9ed69b68c5cab92e87a7cccb73f4':
Follow framework refactoring.
-rw-r--r-- | AndroidManifest.xml | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml index ae64e2fa0..8892c24c1 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -68,8 +68,7 @@ android:hardwareAccelerated="true" android:supportsRtl="true" android:backupAgent='com.android.dialer.DialerBackupAgent' - android:usesCleartextTraffic="false" - android:forceDeviceEncrypted="false"> + android:usesCleartextTraffic="false"> <meta-data android:name="com.google.android.backup.api_key" android:value="AEdPqrEAAAAIBXgtCEKQ6W0PXVnW-ZVia2KmlV2AxsTw3GjAeQ" /> @@ -85,8 +84,7 @@ android:icon="@mipmap/ic_launcher_phone" android:windowSoftInputMode="stateAlwaysHidden|adjustNothing" android:resizeableActivity="true" - android:encryptionAware="true" - > + android:directBootAware="true"> <intent-filter> <action android:name="android.intent.action.DIAL" /> <category android:name="android.intent.category.DEFAULT" /> @@ -281,12 +279,12 @@ <service android:name=".calllog.CallLogNotificationsService" - android:encryptionAware="true" + android:directBootAware="true" android:exported="false" /> <receiver android:name=".calllog.MissedCallNotificationReceiver" - android:encryptionAware="true"> + android:directBootAware="true"> <intent-filter> <action android:name="android.telecom.action.SHOW_MISSED_CALLS_NOTIFICATION" /> </intent-filter> @@ -316,13 +314,13 @@ android:configChanges="screenSize|smallestScreenSize|screenLayout|orientation|keyboardHidden" android:exported="false" android:screenOrientation="nosensor" - android:encryptionAware="true" + android:directBootAware="true" android:resizeableActivity="true"> </activity> <service android:name="com.android.incallui.InCallServiceImpl" android:permission="android.permission.BIND_INCALL_SERVICE" - android:encryptionAware="true" > + android:directBootAware="true" > <meta-data android:name="android.telecom.IN_CALL_SERVICE_UI" android:value="true" /> <meta-data android:name="android.telecom.IN_CALL_SERVICE_RINGING" android:value="false"/> @@ -333,7 +331,7 @@ <!-- BroadcastReceiver for receiving Intents from Notification mechanism. --> <receiver android:name="com.android.incallui.NotificationBroadcastReceiver" - android:encryptionAware="true" + android:directBootAware="true" android:exported="false" /> <provider |