Speed up of message backup/restore
- Use BufferedWriter for backing up
- Use bulkInsert into sms provider on restore
- On restore the agent stores files onto disk and then launch deferred service to restore messages.
- Cache threadId db request on backup and restore.
- Made backups incremental
Also added unit test for hitting the quota on backup.
Bug: 27225193
Bug: 26870249
Change-Id: Ia8875fe692ba33039e58189dcdcca82f207768f1
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 06a331c..00473ce 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -87,5 +87,9 @@
android:singleUser="true"
android:multiprocess="false"
android:writePermission="android.permission.MODIFY_PHONE_STATE" />
+
+ <service
+ android:name=".TelephonyBackupAgent$DeferredSmsMmsRestoreService"
+ android:exported="false" />
</application>
</manifest>