• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2        package="com.android.calllogbackup"
3        android:sharedUserId="android.uid.shared"
4        android:sharedUserLabel="@string/sharedUserLabel">
5
6    <uses-permission android:name="android.permission.QUERY_ALL_PACKAGES" />
7
8    <application android:label="@string/app_label"
9        android:allowBackup="true"
10        android:backupAgent="CallLogBackupAgent"
11        android:forceQueryable="true"
12        android:usesCleartextTraffic="false">
13
14        <meta-data android:name="com.google.android.backup.api_key"
15                android:value="AEdPqrEAAAAIVhVYJjcc4bozis7qBfzzgREFk3nIkWGNc5VaRg" />
16
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>
21                <action android:name="com.android.internal.action.CALL_LOG_CHANGE" />
22            </intent-filter>
23        </receiver>
24    </application>
25</manifest>
26