[FBE] Introduce shadow calllog provider [2/2]

Introduce a new provider that's a clone of the calllog provider but
is EA.

The provider is hidden and requires MANAGE_USERS to access, and responsible
for storing calllog entries that are inserted when the real provider is still
encrypted.  When the real provider starts, it copies the entries from the shadow
as well as user-0's real provider, and clears the shadow.

Also fix b/26516259

Bug 26183949

Change-Id: If44b46709e2e7b1651b41c09d900e1cb2777dc56
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index ea70f64..85fa07c 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -54,6 +54,15 @@
             android:writePermission="android.permission.WRITE_CALL_LOG">
         </provider>
 
+        <provider android:name="ShadowCallLogProvider"
+                  android:authorities="call_log_shadow"
+                  android:syncable="false" android:multiprocess="false"
+                  android:exported="true"
+                  android:encryptionAware="true"
+                  android:readPermission="android.permission.MANAGE_USERS"
+                  android:writePermission="android.permission.MANAGE_USERS">
+        </provider>
+
         <provider android:name="VoicemailContentProvider"
             android:authorities="com.android.voicemail"
             android:syncable="false" android:multiprocess="false"