Steve Soltys | 2497a94 | 2017-09-20 22:42:15 -0400 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| 3 | xmlns:tools="http://schemas.android.com/tools" |
Steve Soltys | 22db457 | 2018-11-13 18:15:21 -0500 | [diff] [blame] | 4 | package="com.stevesoltys.backup" |
Steve Soltys | cdaf842 | 2019-03-14 21:33:50 -0400 | [diff] [blame] | 5 | android:versionCode="5" |
| 6 | android:versionName="0.3.0"> |
Steve Soltys | 2497a94 | 2017-09-20 22:42:15 -0400 | [diff] [blame] | 7 | |
Torsten Grote | 2434fe3 | 2019-06-03 12:23:09 -0300 | [diff] [blame] | 8 | <uses-permission |
| 9 | android:name="android.permission.BACKUP" |
| 10 | tools:ignore="ProtectedPermissions" /> |
| 11 | |
Torsten Grote | 6d8178f | 2019-09-13 11:40:32 -0300 | [diff] [blame] | 12 | <!-- This is needed to retrieve the available storage roots --> |
| 13 | <uses-permission |
| 14 | android:name="android.permission.MANAGE_DOCUMENTS" |
| 15 | tools:ignore="ProtectedPermissions" /> |
| 16 | |
Torsten Grote | 2c4d44c | 2019-09-19 15:21:48 -0300 | [diff] [blame^] | 17 | <!-- This is needed to access the serial number of USB mass storage devices --> |
| 18 | <uses-permission |
| 19 | android:name="android.permission.MANAGE_USB" |
| 20 | tools:ignore="ProtectedPermissions" /> |
| 21 | |
Steve Soltys | 2497a94 | 2017-09-20 22:42:15 -0400 | [diff] [blame] | 22 | <application |
Steve Soltys | cc4b629 | 2018-11-11 21:00:00 -0500 | [diff] [blame] | 23 | android:name=".Backup" |
Torsten Grote | 66c0919 | 2019-07-05 12:35:45 +0200 | [diff] [blame] | 24 | android:allowBackup="false" |
Steve Soltys | 2497a94 | 2017-09-20 22:42:15 -0400 | [diff] [blame] | 25 | android:icon="@mipmap/ic_launcher" |
Steve Soltys | 22db457 | 2018-11-13 18:15:21 -0500 | [diff] [blame] | 26 | android:label="@string/app_name" |
Torsten Grote | 66c0919 | 2019-07-05 12:35:45 +0200 | [diff] [blame] | 27 | android:supportsRtl="true" |
| 28 | android:theme="@style/AppTheme" |
Torsten Grote | 2434fe3 | 2019-06-03 12:23:09 -0300 | [diff] [blame] | 29 | tools:ignore="GoogleAppIndexingWarning"> |
Steve Soltys | 2497a94 | 2017-09-20 22:42:15 -0400 | [diff] [blame] | 30 | |
Torsten Grote | 2434fe3 | 2019-06-03 12:23:09 -0300 | [diff] [blame] | 31 | <activity |
Torsten Grote | b983414 | 2019-06-18 17:39:46 -0300 | [diff] [blame] | 32 | android:name=".settings.SettingsActivity" |
| 33 | android:exported="true" /> |
| 34 | |
| 35 | <activity |
Torsten Grote | 6d8178f | 2019-09-13 11:40:32 -0300 | [diff] [blame] | 36 | android:name=".ui.storage.StorageActivity" |
| 37 | android:theme="@style/AppTheme.NoActionBar" /> |
| 38 | |
| 39 | <activity |
| 40 | android:name=".ui.storage.PermissionGrantActivity" |
| 41 | android:exported="false" |
| 42 | android:permission="android.permission.MANAGE_DOCUMENTS" /> |
| 43 | |
| 44 | <activity |
| 45 | android:name=".ui.recoverycode.RecoveryCodeActivity" |
| 46 | android:label="@string/recovery_code_title" |
| 47 | android:theme="@style/AppTheme.NoActionBar" /> |
Torsten Grote | 66c0919 | 2019-07-05 12:35:45 +0200 | [diff] [blame] | 48 | |
| 49 | <activity |
Torsten Grote | 491789e | 2019-09-05 17:42:39 -0300 | [diff] [blame] | 50 | android:name=".restore.RestoreActivity" |
| 51 | android:exported="true" |
| 52 | android:label="@string/restore_title" |
| 53 | android:theme="@style/AppTheme.NoActionBar"> |
| 54 | <intent-filter> |
| 55 | <action android:name="com.stevesoltys.backup.restore.RESTORE_BACKUP" /> |
| 56 | <category android:name="android.intent.category.DEFAULT" /> |
| 57 | </intent-filter> |
| 58 | </activity> |
| 59 | |
| 60 | <activity |
Torsten Grote | 2434fe3 | 2019-06-03 12:23:09 -0300 | [diff] [blame] | 61 | android:name="com.stevesoltys.backup.activity.MainActivity" |
Torsten Grote | 1ee443a | 2019-08-01 10:34:31 +0200 | [diff] [blame] | 62 | android:label="@string/app_name" /> |
Steve Soltys | 2497a94 | 2017-09-20 22:42:15 -0400 | [diff] [blame] | 63 | |
Steve Soltys | 22db457 | 2018-11-13 18:15:21 -0500 | [diff] [blame] | 64 | <activity |
| 65 | android:name="com.stevesoltys.backup.activity.backup.CreateBackupActivity" |
| 66 | android:parentActivityName="com.stevesoltys.backup.activity.MainActivity" /> |
Steve Soltys | 2497a94 | 2017-09-20 22:42:15 -0400 | [diff] [blame] | 67 | |
Steve Soltys | 22db457 | 2018-11-13 18:15:21 -0500 | [diff] [blame] | 68 | <activity |
| 69 | android:name="com.stevesoltys.backup.activity.restore.RestoreBackupActivity" |
| 70 | android:parentActivityName="com.stevesoltys.backup.activity.MainActivity" /> |
Steve Soltys | 2497a94 | 2017-09-20 22:42:15 -0400 | [diff] [blame] | 71 | |
Steve Soltys | 22db457 | 2018-11-13 18:15:21 -0500 | [diff] [blame] | 72 | <service |
Torsten Grote | 683268a | 2019-09-02 11:45:57 -0300 | [diff] [blame] | 73 | android:name=".transport.ConfigurableBackupTransportService" |
Steve Soltys | 22db457 | 2018-11-13 18:15:21 -0500 | [diff] [blame] | 74 | android:exported="false"> |
Steve Soltys | 2497a94 | 2017-09-20 22:42:15 -0400 | [diff] [blame] | 75 | <intent-filter> |
| 76 | <action android:name="android.backup.TRANSPORT_HOST" /> |
| 77 | </intent-filter> |
| 78 | </service> |
| 79 | |
Torsten Grote | b0386c8 | 2019-09-18 09:23:46 -0300 | [diff] [blame] | 80 | <receiver |
| 81 | android:name=".UsbIntentReceiver" |
| 82 | android:exported="true"> |
| 83 | <intent-filter> |
| 84 | <action android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED" /> |
| 85 | </intent-filter> |
| 86 | <meta-data |
| 87 | android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED" |
| 88 | android:resource="@xml/device_filter" /> |
| 89 | </receiver> |
| 90 | |
Steve Soltys | 2497a94 | 2017-09-20 22:42:15 -0400 | [diff] [blame] | 91 | </application> |
| 92 | </manifest> |