blob: 2a1aadb395d1d13326e6c104534c77918edbb1be [file] [log] [blame]
Santos Cordon339272c2015-01-12 17:23:51 -08001<manifest xmlns:android="http://schemas.android.com/apk/res/android"
Santos Cordon349e0f42015-10-09 12:50:27 -07002 package="com.android.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"
Alex Klyubin03f6a652015-05-20 12:18:54 -07009 android:backupAgent="CallLogBackupAgent"
10 android:usesCleartextTraffic="false">
Santos Cordon339272c2015-01-12 17:23:51 -080011
Santos Cordon61cc9302015-03-06 12:40:43 -080012 <meta-data android:name="com.google.android.backup.api_key"
Santos Cordon349e0f42015-10-09 12:50:27 -070013 android:value="AEdPqrEAAAAIVhVYJjcc4bozis7qBfzzgREFk3nIkWGNc5VaRg" />
Santos Cordon61cc9302015-03-06 12:40:43 -080014
15 <receiver android:name="CallLogChangeReceiver"
16 android:permission="android.permission.SEND_CALL_LOG_CHANGE">
17 <!-- Sent when the call log changes. We use it to trigger a backup request. -->
18 <intent-filter>
19 <action android:name="android.intent.action.CALL_LOG_CHANGE" />
20 </intent-filter>
21 </receiver>
Santos Cordon339272c2015-01-12 17:23:51 -080022 </application>
23</manifest>