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:permission="android.permission.SEND_CALL_LOG_CHANGE"> 17 <!-- Sent when the call log changes. We use it to trigger a backup request. --> 18 <intent-filter> 19 <action android:name="android.intent.action.CALL_LOG_CHANGE" /> 20 </intent-filter> 21 </receiver> 22 </application> 23</manifest> 24