2017-09-21 04:42:15 +02: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"
|
2018-11-14 00:15:21 +01:00
|
|
|
package="com.stevesoltys.backup"
|
2019-03-15 02:33:50 +01:00
|
|
|
android:versionCode="5"
|
|
|
|
android:versionName="0.3.0">
|
2017-09-21 04:42:15 +02:00
|
|
|
|
2019-06-03 17:23:09 +02:00
|
|
|
<uses-permission
|
|
|
|
android:name="android.permission.BACKUP"
|
|
|
|
tools:ignore="ProtectedPermissions" />
|
|
|
|
|
2019-09-13 16:40:32 +02:00
|
|
|
<!-- This is needed to retrieve the available storage roots -->
|
|
|
|
<uses-permission
|
|
|
|
android:name="android.permission.MANAGE_DOCUMENTS"
|
|
|
|
tools:ignore="ProtectedPermissions" />
|
|
|
|
|
2019-09-19 20:21:48 +02:00
|
|
|
<!-- This is needed to access the serial number of USB mass storage devices -->
|
|
|
|
<uses-permission
|
|
|
|
android:name="android.permission.MANAGE_USB"
|
|
|
|
tools:ignore="ProtectedPermissions" />
|
|
|
|
|
2019-09-19 21:29:53 +02:00
|
|
|
<!-- This is needed to change system backup settings -->
|
|
|
|
<uses-permission
|
|
|
|
android:name="android.permission.WRITE_SECURE_SETTINGS"
|
|
|
|
tools:ignore="ProtectedPermissions" />
|
|
|
|
|
2017-09-21 04:42:15 +02:00
|
|
|
<application
|
2018-11-12 03:00:00 +01:00
|
|
|
android:name=".Backup"
|
2019-07-05 12:35:45 +02:00
|
|
|
android:allowBackup="false"
|
2017-09-21 04:42:15 +02:00
|
|
|
android:icon="@mipmap/ic_launcher"
|
2018-11-14 00:15:21 +01:00
|
|
|
android:label="@string/app_name"
|
2019-07-05 12:35:45 +02:00
|
|
|
android:supportsRtl="true"
|
|
|
|
android:theme="@style/AppTheme"
|
2019-06-03 17:23:09 +02:00
|
|
|
tools:ignore="GoogleAppIndexingWarning">
|
2017-09-21 04:42:15 +02:00
|
|
|
|
2019-06-18 22:39:46 +02:00
|
|
|
<activity
|
|
|
|
android:name=".settings.SettingsActivity"
|
|
|
|
android:exported="true" />
|
|
|
|
|
2019-07-05 12:35:45 +02:00
|
|
|
<activity
|
2019-09-13 16:40:32 +02:00
|
|
|
android:name=".ui.storage.StorageActivity"
|
|
|
|
android:theme="@style/AppTheme.NoActionBar" />
|
|
|
|
|
|
|
|
<activity
|
|
|
|
android:name=".ui.storage.PermissionGrantActivity"
|
|
|
|
android:exported="false"
|
|
|
|
android:permission="android.permission.MANAGE_DOCUMENTS" />
|
|
|
|
|
|
|
|
<activity
|
|
|
|
android:name=".ui.recoverycode.RecoveryCodeActivity"
|
|
|
|
android:label="@string/recovery_code_title"
|
|
|
|
android:theme="@style/AppTheme.NoActionBar" />
|
2019-07-05 12:35:45 +02:00
|
|
|
|
2019-09-05 22:42:39 +02:00
|
|
|
<activity
|
|
|
|
android:name=".restore.RestoreActivity"
|
|
|
|
android:exported="true"
|
|
|
|
android:label="@string/restore_title"
|
|
|
|
android:theme="@style/AppTheme.NoActionBar">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="com.stevesoltys.backup.restore.RESTORE_BACKUP" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
|
2019-06-03 17:23:09 +02:00
|
|
|
<activity
|
|
|
|
android:name="com.stevesoltys.backup.activity.MainActivity"
|
2019-08-01 10:34:31 +02:00
|
|
|
android:label="@string/app_name" />
|
2017-09-21 04:42:15 +02:00
|
|
|
|
2018-11-14 00:15:21 +01:00
|
|
|
<activity
|
|
|
|
android:name="com.stevesoltys.backup.activity.backup.CreateBackupActivity"
|
|
|
|
android:parentActivityName="com.stevesoltys.backup.activity.MainActivity" />
|
2017-09-21 04:42:15 +02:00
|
|
|
|
2018-11-14 00:15:21 +01:00
|
|
|
<activity
|
|
|
|
android:name="com.stevesoltys.backup.activity.restore.RestoreBackupActivity"
|
|
|
|
android:parentActivityName="com.stevesoltys.backup.activity.MainActivity" />
|
2017-09-21 04:42:15 +02:00
|
|
|
|
2018-11-14 00:15:21 +01:00
|
|
|
<service
|
2019-09-02 16:45:57 +02:00
|
|
|
android:name=".transport.ConfigurableBackupTransportService"
|
2018-11-14 00:15:21 +01:00
|
|
|
android:exported="false">
|
2017-09-21 04:42:15 +02:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.backup.TRANSPORT_HOST" />
|
|
|
|
</intent-filter>
|
|
|
|
</service>
|
|
|
|
|
2019-09-18 14:23:46 +02:00
|
|
|
<receiver
|
|
|
|
android:name=".UsbIntentReceiver"
|
|
|
|
android:exported="true">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED" />
|
|
|
|
</intent-filter>
|
|
|
|
<meta-data
|
|
|
|
android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED"
|
|
|
|
android:resource="@xml/device_filter" />
|
|
|
|
</receiver>
|
|
|
|
|
2017-09-21 04:42:15 +02:00
|
|
|
</application>
|
|
|
|
</manifest>
|