You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
1.2 KiB
28 lines
1.2 KiB
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.android.calllogbackup"
|
|
android:sharedUserId="android.uid.shared"
|
|
android:sharedUserLabel="@string/sharedUserLabel">
|
|
|
|
<uses-permission android:name="android.permission.QUERY_ALL_PACKAGES" />
|
|
<uses-permission android:name="com.android.voicemail.permission.READ_VOICEMAIL" />
|
|
|
|
<application android:label="@string/app_label"
|
|
android:allowBackup="true"
|
|
android:backupAgent="CallLogBackupAgent"
|
|
android:forceQueryable="true"
|
|
android:usesCleartextTraffic="false">
|
|
|
|
<meta-data android:name="com.google.android.backup.api_key"
|
|
android:value="AEdPqrEAAAAIVhVYJjcc4bozis7qBfzzgREFk3nIkWGNc5VaRg" />
|
|
|
|
<receiver android:name="CallLogChangeReceiver"
|
|
android:exported="true"
|
|
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="com.android.internal.action.CALL_LOG_CHANGE" />
|
|
</intent-filter>
|
|
</receiver>
|
|
</application>
|
|
</manifest>
|