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: I05102597b94616b137dd1f5c8b7173ae51e8c53e
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index ff8370d..80f0a41 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -29,7 +29,9 @@
                  android:allowBackup="false"
                  android:label="@string/app_label"
                  android:icon="@mipmap/ic_launcher_phone"
-                 android:usesCleartextTraffic="true">
+                 android:usesCleartextTraffic="true"
+                 android:forceDeviceEncrypted="true"
+                 android:encryptionAware="true">
 
         <provider android:name="TelephonyProvider"
                   android:authorities="telephony"