blob: 0bfb69e34b278da5e1ec47065febf10d99254084 [file] [log] [blame]
Steve Soltys2497a942017-09-20 22:42:15 -04001<?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 Soltys22db4572018-11-13 18:15:21 -05004 package="com.stevesoltys.backup"
Steve Soltyscdaf8422019-03-14 21:33:50 -04005 android:versionCode="5"
6 android:versionName="0.3.0">
Steve Soltys2497a942017-09-20 22:42:15 -04007
Steve Soltys2497a942017-09-20 22:42:15 -04008 <uses-sdk
9 android:minSdkVersion="26"
Torsten Groteb17a55a2019-06-11 10:25:36 -030010 android:targetSdkVersion="28"
Torsten Grote1e00d2c2019-06-04 12:36:53 -030011 tools:ignore="GradleOverrides,OldTargetApi" />
Steve Soltys2497a942017-09-20 22:42:15 -040012
Torsten Grote2434fe32019-06-03 12:23:09 -030013 <uses-permission
14 android:name="android.permission.BACKUP"
15 tools:ignore="ProtectedPermissions" />
16
Torsten Grote54014742019-06-07 16:41:48 -030017 <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
18
Steve Soltys2497a942017-09-20 22:42:15 -040019 <application
Steve Soltyscc4b6292018-11-11 21:00:00 -050020 android:name=".Backup"
Torsten Grote66c09192019-07-05 12:35:45 +020021 android:allowBackup="false"
Steve Soltys2497a942017-09-20 22:42:15 -040022 android:icon="@mipmap/ic_launcher"
Steve Soltys22db4572018-11-13 18:15:21 -050023 android:label="@string/app_name"
Torsten Grote66c09192019-07-05 12:35:45 +020024 android:supportsRtl="true"
25 android:theme="@style/AppTheme"
Torsten Grote2434fe32019-06-03 12:23:09 -030026 tools:ignore="GoogleAppIndexingWarning">
Steve Soltys2497a942017-09-20 22:42:15 -040027
Torsten Grote2434fe32019-06-03 12:23:09 -030028 <activity
Torsten Groteb9834142019-06-18 17:39:46 -030029 android:name=".settings.SettingsActivity"
30 android:exported="true" />
31
32 <activity
Torsten Grote66c09192019-07-05 12:35:45 +020033 android:name=".settings.RecoveryCodeActivity"
34 android:label="@string/recovery_code_title" />
35
36 <activity
Torsten Grote2434fe32019-06-03 12:23:09 -030037 android:name="com.stevesoltys.backup.activity.MainActivity"
38 android:label="@string/app_name">
Steve Soltys2497a942017-09-20 22:42:15 -040039 <intent-filter>
Steve Soltys22db4572018-11-13 18:15:21 -050040 <action android:name="android.intent.action.MAIN" />
41 <category android:name="android.intent.category.LAUNCHER" />
Steve Soltys2497a942017-09-20 22:42:15 -040042 </intent-filter>
43 </activity>
44
Steve Soltys22db4572018-11-13 18:15:21 -050045 <activity
46 android:name="com.stevesoltys.backup.activity.backup.CreateBackupActivity"
47 android:parentActivityName="com.stevesoltys.backup.activity.MainActivity" />
Steve Soltys2497a942017-09-20 22:42:15 -040048
Steve Soltys22db4572018-11-13 18:15:21 -050049 <activity
50 android:name="com.stevesoltys.backup.activity.restore.RestoreBackupActivity"
51 android:parentActivityName="com.stevesoltys.backup.activity.MainActivity" />
Steve Soltys2497a942017-09-20 22:42:15 -040052
Steve Soltys22db4572018-11-13 18:15:21 -050053 <service
54 android:name="com.stevesoltys.backup.transport.ConfigurableBackupTransportService"
55 android:exported="false">
Steve Soltys2497a942017-09-20 22:42:15 -040056 <intent-filter>
57 <action android:name="android.backup.TRANSPORT_HOST" />
58 </intent-filter>
59 </service>
60
Torsten Grote54014742019-06-07 16:41:48 -030061 <service
62 android:name=".service.backup.BackupJobService"
63 android:exported="false"
64 android:permission="android.permission.BIND_JOB_SERVICE" />
65
Steve Soltys2497a942017-09-20 22:42:15 -040066 </application>
67</manifest>