summaryrefslogtreecommitdiffstats
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authorJeff Sharkey <jsharkey@android.com>2015-11-18 15:35:23 -0700
committerJeff Sharkey <jsharkey@android.com>2015-11-19 11:10:27 -0700
commitcb408ad50deb2f0d29c0c0c2b7f5ef83c8ff3496 (patch)
treee0de4df81523d1961a2b08f415d2db84b8ed2ed3 /AndroidManifest.xml
parent4ac80a88a2b589a7f0bf1c2cada4ae0d9cb500e2 (diff)
downloadandroid_packages_apps_PackageInstaller-cb408ad50deb2f0d29c0c0c2b7f5ef83c8ff3496.tar.gz
android_packages_apps_PackageInstaller-cb408ad50deb2f0d29c0c0c2b7f5ef83c8ff3496.tar.bz2
android_packages_apps_PackageInstaller-cb408ad50deb2f0d29c0c0c2b7f5ef83c8ff3496.zip
Mark this coreApp as being encryptionAware.
Historically, apps marked with "coreApp" were prepared to run in a limited boot environment, and were critical to booting the device, so in the new file-based encryption world we're marking these apps with both "forceDeviceEncrypted" and "encryptionAware" attributes. Bug: 22358539 Change-Id: Ib54d9b4cdc0d66695feed690ace31681a35df90f
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r--AndroidManifest.xml4
1 files changed, 3 insertions, 1 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 3f1bb1d8..85ed7f75 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -24,7 +24,9 @@
<application android:label="@string/app_name"
android:allowBackup="false"
android:theme="@style/Theme.DialogWhenLarge"
- android:supportsRtl="true">
+ android:supportsRtl="true"
+ android:forceDeviceEncrypted="true"
+ android:encryptionAware="true">
<activity android:name=".PackageInstallerActivity"
android:configChanges="orientation|keyboardHidden|screenSize"