blob: cce2844f1fc7f0cddac4676a23fb0a3f0f95fa06 [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"
Steve Soltys2497a942017-09-20 22:42:15 -040021 android:supportsRtl="true"
22 android:theme="@style/AppTheme"
23 android:icon="@mipmap/ic_launcher"
Steve Soltys22db4572018-11-13 18:15:21 -050024 android:label="@string/app_name"
25 android:allowBackup="false"
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 Grote2434fe32019-06-03 12:23:09 -030033 android:name="com.stevesoltys.backup.activity.MainActivity"
34 android:label="@string/app_name">
Steve Soltys2497a942017-09-20 22:42:15 -040035 <intent-filter>
Steve Soltys22db4572018-11-13 18:15:21 -050036 <action android:name="android.intent.action.MAIN" />
37 <category android:name="android.intent.category.LAUNCHER" />
Steve Soltys2497a942017-09-20 22:42:15 -040038 </intent-filter>
39 </activity>
40
Steve Soltys22db4572018-11-13 18:15:21 -050041 <activity
42 android:name="com.stevesoltys.backup.activity.backup.CreateBackupActivity"
43 android:parentActivityName="com.stevesoltys.backup.activity.MainActivity" />
Steve Soltys2497a942017-09-20 22:42:15 -040044
Steve Soltys22db4572018-11-13 18:15:21 -050045 <activity
46 android:name="com.stevesoltys.backup.activity.restore.RestoreBackupActivity"
47 android:parentActivityName="com.stevesoltys.backup.activity.MainActivity" />
Steve Soltys2497a942017-09-20 22:42:15 -040048
Steve Soltys22db4572018-11-13 18:15:21 -050049 <service
50 android:name="com.stevesoltys.backup.transport.ConfigurableBackupTransportService"
51 android:exported="false">
Steve Soltys2497a942017-09-20 22:42:15 -040052 <intent-filter>
53 <action android:name="android.backup.TRANSPORT_HOST" />
54 </intent-filter>
55 </service>
56
Torsten Grote54014742019-06-07 16:41:48 -030057 <service
58 android:name=".service.backup.BackupJobService"
59 android:exported="false"
60 android:permission="android.permission.BIND_JOB_SERVICE" />
61
Steve Soltys2497a942017-09-20 22:42:15 -040062 </application>
63</manifest>