2020-09-18 12:04:18 -03:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2020-10-23 10:25:44 -03:00
|
|
|
package="org.calyxos.backup.contacts"
|
2022-12-29 19:45:31 +05:30
|
|
|
android:versionCode="33030020"
|
|
|
|
|
android:versionName="13-3.2">
|
2020-10-23 10:25:44 -03:00
|
|
|
<!--
|
|
|
|
|
The version code is the targeted SDK_VERSION plus 6 digits for our own version code.
|
|
|
|
|
The version name is the targeted Android version followed by - and our own version name.
|
|
|
|
|
-->
|
2020-09-18 12:04:18 -03:00
|
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.READ_CONTACTS" />
|
|
|
|
|
<uses-permission android:name="android.permission.WRITE_CONTACTS" />
|
|
|
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
|
|
|
|
|
|
|
|
|
|
<application
|
|
|
|
|
android:allowBackup="true"
|
|
|
|
|
android:backupAgent="ContactsBackupAgent"
|
|
|
|
|
android:forceQueryable="true"
|
|
|
|
|
android:fullBackupOnly="true"
|
|
|
|
|
android:label="@string/app_label"
|
|
|
|
|
android:supportsRtl="true"
|
|
|
|
|
android:usesCleartextTraffic="false"
|
|
|
|
|
tools:ignore="AllowBackup,MissingApplicationIcon">
|
|
|
|
|
|
2021-10-07 17:54:35 -03:00
|
|
|
<!-- We are using the receiver to not get FLAG_STOPPED with which we won't get backed up -->
|
2020-09-18 12:04:18 -03:00
|
|
|
<receiver
|
|
|
|
|
android:name=".StartBroadcastReceiver"
|
|
|
|
|
android:exported="false">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.BOOT_COMPLETED" />
|
|
|
|
|
<action android:name="android.intent.action.MY_PACKAGE_REPLACED" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</receiver>
|
|
|
|
|
|
|
|
|
|
</application>
|
|
|
|
|
|
|
|
|
|
</manifest>
|