Add a PRE_BOOT_COMPLETED receiver.

It runs the first time after an OTA and either creates
the database or runs the upgrade path on it. This may
take a significatn amount of time so it's done before
the boot animation completes.

Bug: 2713849
Change-Id: I07f2c22a1462e6923cb7b060d561e7fb41a6e82d
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index f940130..7ccfcce 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -48,5 +48,15 @@
             android:multiprocess="false"
             android:readPermission="android.permission.READ_CONTACTS"
             android:writePermission="android.permission.WRITE_CONTACTS" />
+
+        <!-- Handles database upgrades after OTAs, then disables itself -->
+        <receiver android:name="ContactsUpgradeReceiver">
+            <!-- This broadcast is sent after the core system has finished
+                 booting, before the home app is launched or BOOT_COMPLETED
+                 is sent. -->
+            <intent-filter>
+                <action android:name="android.intent.action.PRE_BOOT_COMPLETED"/>
+            </intent-filter>
+        </receiver>
     </application>
 </manifest>