blob: 063c1d1b921ae9d1b0a1a78532bb059d0b487c0f [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
Patrick Baumannd196e492019-11-19 10:27:07 -08006 <uses-permission android:name="android.permission.QUERY_ALL_PACKAGES" />
7
Santos Cordon61cc9302015-03-06 12:40:43 -08008 <application android:label="@string/app_label"
Santos Cordon339272c2015-01-12 17:23:51 -08009 android:icon="@drawable/app_icon"
Santos Cordon61cc9302015-03-06 12:40:43 -080010 android:allowBackup="true"
Alex Klyubin03f6a652015-05-20 12:18:54 -070011 android:backupAgent="CallLogBackupAgent"
12 android:usesCleartextTraffic="false">
Santos Cordon339272c2015-01-12 17:23:51 -080013
Santos Cordon61cc9302015-03-06 12:40:43 -080014 <meta-data android:name="com.google.android.backup.api_key"
Santos Cordon349e0f42015-10-09 12:50:27 -070015 android:value="AEdPqrEAAAAIVhVYJjcc4bozis7qBfzzgREFk3nIkWGNc5VaRg" />
Santos Cordon61cc9302015-03-06 12:40:43 -080016
17 <receiver android:name="CallLogChangeReceiver"
18 android:permission="android.permission.SEND_CALL_LOG_CHANGE">
19 <!-- Sent when the call log changes. We use it to trigger a backup request. -->
20 <intent-filter>
Tyler Gunn398c26d2017-03-29 13:13:06 -070021 <action android:name="com.android.internal.action.CALL_LOG_CHANGE" />
Santos Cordon61cc9302015-03-06 12:40:43 -080022 </intent-filter>
23 </receiver>
Santos Cordon339272c2015-01-12 17:23:51 -080024 </application>
25</manifest>