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 <application android:label="@string/app_label" 7 android:icon="@drawable/app_icon" 8 android:allowBackup="true" 9 android:backupAgent="CallLogBackupAgent" 10 android:usesCleartextTraffic="false"> 11 12 <meta-data android:name="com.google.android.backup.api_key" 13 android:value="AEdPqrEAAAAIVhVYJjcc4bozis7qBfzzgREFk3nIkWGNc5VaRg" /> 14 15 <receiver android:name="CallLogChangeReceiver" 16 android:exported="true" 17 android:permission="android.permission.SEND_CALL_LOG_CHANGE"> 18 <!-- Sent when the call log changes. We use it to trigger a backup request. --> 19 <intent-filter> 20 <action android:name="com.android.internal.action.CALL_LOG_CHANGE" /> 21 </intent-filter> 22 </receiver> 23 </application> 24</manifest> 25