blob: 7f1f1360bbbfbb964e902441d4347e92fc8b4f2e [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"
Steve Soltysf21e6872019-02-11 22:41:50 -050010 android:targetSdkVersion="26" />
Steve Soltys2497a942017-09-20 22:42:15 -040011
Torsten Grote2434fe32019-06-03 12:23:09 -030012 <uses-permission
13 android:name="android.permission.BACKUP"
14 tools:ignore="ProtectedPermissions" />
15
Steve Soltys2497a942017-09-20 22:42:15 -040016 <application
Steve Soltyscc4b6292018-11-11 21:00:00 -050017 android:name=".Backup"
Steve Soltys2497a942017-09-20 22:42:15 -040018 android:supportsRtl="true"
19 android:theme="@style/AppTheme"
20 android:icon="@mipmap/ic_launcher"
Steve Soltys22db4572018-11-13 18:15:21 -050021 android:label="@string/app_name"
22 android:allowBackup="false"
Torsten Grote2434fe32019-06-03 12:23:09 -030023 tools:ignore="GoogleAppIndexingWarning">
Steve Soltys2497a942017-09-20 22:42:15 -040024
Torsten Grote2434fe32019-06-03 12:23:09 -030025 <activity
26 android:name="com.stevesoltys.backup.activity.MainActivity"
27 android:label="@string/app_name">
Steve Soltys2497a942017-09-20 22:42:15 -040028 <intent-filter>
Steve Soltys22db4572018-11-13 18:15:21 -050029 <action android:name="android.intent.action.MAIN" />
30 <category android:name="android.intent.category.LAUNCHER" />
Steve Soltys2497a942017-09-20 22:42:15 -040031 </intent-filter>
32 </activity>
33
Steve Soltys22db4572018-11-13 18:15:21 -050034 <activity
35 android:name="com.stevesoltys.backup.activity.backup.CreateBackupActivity"
36 android:parentActivityName="com.stevesoltys.backup.activity.MainActivity" />
Steve Soltys2497a942017-09-20 22:42:15 -040037
Steve Soltys22db4572018-11-13 18:15:21 -050038 <activity
39 android:name="com.stevesoltys.backup.activity.restore.RestoreBackupActivity"
40 android:parentActivityName="com.stevesoltys.backup.activity.MainActivity" />
Steve Soltys2497a942017-09-20 22:42:15 -040041
Steve Soltys22db4572018-11-13 18:15:21 -050042 <service
43 android:name="com.stevesoltys.backup.transport.ConfigurableBackupTransportService"
44 android:exported="false">
Steve Soltys2497a942017-09-20 22:42:15 -040045 <intent-filter>
46 <action android:name="android.backup.TRANSPORT_HOST" />
47 </intent-filter>
48 </service>
49
50 </application>
51</manifest>