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"
|
2019-10-29 02:57:47 +01:00
|
|
|
package="com.stevesoltys.seedvault"
|
2020-03-07 21:46:02 +01:00
|
|
|
android:versionCode="7"
|
2020-03-07 21:41:49 +01:00
|
|
|
android:versionName="1.0.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" />
|
2020-03-08 22:13:35 +01:00
|
|
|
|
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" />
|
|
|
|
|
2019-12-20 17:55:38 +01:00
|
|
|
<!-- This is needed to re-install backed-up packages when restoring from backup -->
|
|
|
|
<uses-permission
|
|
|
|
android:name="android.permission.INSTALL_PACKAGES"
|
|
|
|
tools:ignore="ProtectedPermissions" />
|
|
|
|
|
2020-01-03 16:51:44 +01:00
|
|
|
<!-- This is needed when using auto-restore with removable storage
|
|
|
|
to allow the user to uninstall an app when storage was not plugged in during install -->
|
|
|
|
<uses-permission android:name="android.permission.REQUEST_DELETE_PACKAGES" />
|
|
|
|
|
2017-09-21 04:42:15 +02:00
|
|
|
<application
|
2019-12-16 17:11:11 +01:00
|
|
|
android:name=".App"
|
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-09-23 21:36:31 +02:00
|
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
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>
|
2019-12-06 16:33:50 +01:00
|
|
|
<action android:name="com.stevesoltys.seedvault.RESTORE_BACKUP" />
|
2019-09-05 22:42:39 +02:00
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
|
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>
|
|
|
|
|
2020-01-03 16:51:44 +01:00
|
|
|
<receiver
|
|
|
|
android:name=".restore.RestoreErrorBroadcastReceiver"
|
|
|
|
android:exported="false">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="com.stevesoltys.seedvault.action.UNINSTALL" />
|
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
|
|
|
|
2017-09-21 04:42:15 +02:00
|
|
|
</application>
|
|
|
|
</manifest>
|