blob: 4665b8cb904eaa922dbf676e763f74c30cdd289a [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 Grote1ee443a2019-08-01 10:34:31 +020017 <!-- This is needed to retrieve the serial number of the device,
18 so we can store the backups for each device in a unique location -->
19 <uses-permission android:name="android.permission.READ_PHONE_STATE" />
Torsten Grote54014742019-06-07 16:41:48 -030020
Steve Soltys2497a942017-09-20 22:42:15 -040021 <application
Steve Soltyscc4b6292018-11-11 21:00:00 -050022 android:name=".Backup"
Torsten Grote66c09192019-07-05 12:35:45 +020023 android:allowBackup="false"
Steve Soltys2497a942017-09-20 22:42:15 -040024 android:icon="@mipmap/ic_launcher"
Steve Soltys22db4572018-11-13 18:15:21 -050025 android:label="@string/app_name"
Torsten Grote66c09192019-07-05 12:35:45 +020026 android:supportsRtl="true"
27 android:theme="@style/AppTheme"
Torsten Grote2434fe32019-06-03 12:23:09 -030028 tools:ignore="GoogleAppIndexingWarning">
Steve Soltys2497a942017-09-20 22:42:15 -040029
Torsten Grote2434fe32019-06-03 12:23:09 -030030 <activity
Torsten Groteb9834142019-06-18 17:39:46 -030031 android:name=".settings.SettingsActivity"
32 android:exported="true" />
33
34 <activity
Torsten Grote66c09192019-07-05 12:35:45 +020035 android:name=".settings.RecoveryCodeActivity"
36 android:label="@string/recovery_code_title" />
37
38 <activity
Torsten Grote2434fe32019-06-03 12:23:09 -030039 android:name="com.stevesoltys.backup.activity.MainActivity"
Torsten Grote1ee443a2019-08-01 10:34:31 +020040 android:label="@string/app_name" />
Steve Soltys2497a942017-09-20 22:42:15 -040041
Steve Soltys22db4572018-11-13 18:15:21 -050042 <activity
43 android:name="com.stevesoltys.backup.activity.backup.CreateBackupActivity"
44 android:parentActivityName="com.stevesoltys.backup.activity.MainActivity" />
Steve Soltys2497a942017-09-20 22:42:15 -040045
Steve Soltys22db4572018-11-13 18:15:21 -050046 <activity
47 android:name="com.stevesoltys.backup.activity.restore.RestoreBackupActivity"
48 android:parentActivityName="com.stevesoltys.backup.activity.MainActivity" />
Steve Soltys2497a942017-09-20 22:42:15 -040049
Steve Soltys22db4572018-11-13 18:15:21 -050050 <service
Torsten Grote683268a2019-09-02 11:45:57 -030051 android:name=".transport.ConfigurableBackupTransportService"
Steve Soltys22db4572018-11-13 18:15:21 -050052 android:exported="false">
Steve Soltys2497a942017-09-20 22:42:15 -040053 <intent-filter>
54 <action android:name="android.backup.TRANSPORT_HOST" />
55 </intent-filter>
56 </service>
57
Steve Soltys2497a942017-09-20 22:42:15 -040058 </application>
59</manifest>