summaryrefslogtreecommitdiffstats
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r--AndroidManifest.xml18
1 files changed, 14 insertions, 4 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 0654e39..bf486de 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -1,12 +1,22 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
- package="com.android.providers.calllog"
+ package="com.android.providers.calllogbackup"
android:sharedUserId="android.uid.shared"
android:sharedUserLabel="@string/sharedUserLabel">
- <application android:process="android.process.acore"
- android:label="@string/app_label"
+ <application android:label="@string/app_label"
android:icon="@drawable/app_icon"
- android:allowBackup="true">
+ android:allowBackup="true"
+ android:backupAgent="CallLogBackupAgent">
+ <meta-data android:name="com.google.android.backup.api_key"
+ android:value="AEdPqrEAAAAISbHhhUji6KZyyjz4I8-MdBqlnoiTJoFAEUHHzA" />
+
+ <receiver android:name="CallLogChangeReceiver"
+ android:permission="android.permission.SEND_CALL_LOG_CHANGE">
+ <!-- Sent when the call log changes. We use it to trigger a backup request. -->
+ <intent-filter>
+ <action android:name="android.intent.action.CALL_LOG_CHANGE" />
+ </intent-filter>
+ </receiver>
</application>
</manifest>