summaryrefslogtreecommitdiffstats
path: root/AndroidManifest.xml
blob: 2a1aadb395d1d13326e6c104534c77918edbb1be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
        package="com.android.calllogbackup"
        android:sharedUserId="android.uid.shared"
        android:sharedUserLabel="@string/sharedUserLabel">

    <application android:label="@string/app_label"
        android:icon="@drawable/app_icon"
        android:allowBackup="true"
        android:backupAgent="CallLogBackupAgent"
        android:usesCleartextTraffic="false">

        <meta-data android:name="com.google.android.backup.api_key"
                android:value="AEdPqrEAAAAIVhVYJjcc4bozis7qBfzzgREFk3nIkWGNc5VaRg" />

        <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>