blob: bf486deaea6af2b2978061b14aeac1db98c007f6 [file] [log] [blame]
Santos Cordon339272c2015-01-12 17:23:51 -08001<manifest xmlns:android="http://schemas.android.com/apk/res/android"
Santos Cordon61cc9302015-03-06 12:40:43 -08002 package="com.android.providers.calllogbackup"
Santos Cordon339272c2015-01-12 17:23:51 -08003 android:sharedUserId="android.uid.shared"
4 android:sharedUserLabel="@string/sharedUserLabel">
5
Santos Cordon61cc9302015-03-06 12:40:43 -08006 <application android:label="@string/app_label"
Santos Cordon339272c2015-01-12 17:23:51 -08007 android:icon="@drawable/app_icon"
Santos Cordon61cc9302015-03-06 12:40:43 -08008 android:allowBackup="true"
9 android:backupAgent="CallLogBackupAgent">
Santos Cordon339272c2015-01-12 17:23:51 -080010
Santos Cordon61cc9302015-03-06 12:40:43 -080011 <meta-data android:name="com.google.android.backup.api_key"
12 android:value="AEdPqrEAAAAISbHhhUji6KZyyjz4I8-MdBqlnoiTJoFAEUHHzA" />
13
14 <receiver android:name="CallLogChangeReceiver"
15 android:permission="android.permission.SEND_CALL_LOG_CHANGE">
16 <!-- Sent when the call log changes. We use it to trigger a backup request. -->
17 <intent-filter>
18 <action android:name="android.intent.action.CALL_LOG_CHANGE" />
19 </intent-filter>
20 </receiver>
Santos Cordon339272c2015-01-12 17:23:51 -080021 </application>
22</manifest>