491789e8e0
and allows the user to select one to get restored.
70 lines
2.5 KiB
XML
70 lines
2.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
package="com.stevesoltys.backup"
|
|
android:versionCode="5"
|
|
android:versionName="0.3.0">
|
|
|
|
<uses-sdk
|
|
android:minSdkVersion="26"
|
|
android:targetSdkVersion="28"
|
|
tools:ignore="GradleOverrides,OldTargetApi" />
|
|
|
|
<uses-permission
|
|
android:name="android.permission.BACKUP"
|
|
tools:ignore="ProtectedPermissions" />
|
|
|
|
<!-- This is needed to retrieve the serial number of the device,
|
|
so we can store the backups for each device in a unique location -->
|
|
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
|
|
|
|
<application
|
|
android:name=".Backup"
|
|
android:allowBackup="false"
|
|
android:icon="@mipmap/ic_launcher"
|
|
android:label="@string/app_name"
|
|
android:supportsRtl="true"
|
|
android:theme="@style/AppTheme"
|
|
tools:ignore="GoogleAppIndexingWarning">
|
|
|
|
<activity
|
|
android:name=".settings.SettingsActivity"
|
|
android:exported="true" />
|
|
|
|
<activity
|
|
android:name=".ui.RecoveryCodeActivity"
|
|
android:label="@string/recovery_code_title" />
|
|
|
|
<activity
|
|
android:name=".restore.RestoreActivity"
|
|
android:exported="true"
|
|
android:label="@string/restore_title"
|
|
android:theme="@style/AppTheme.NoActionBar">
|
|
<intent-filter>
|
|
<action android:name="com.stevesoltys.backup.restore.RESTORE_BACKUP" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<activity
|
|
android:name="com.stevesoltys.backup.activity.MainActivity"
|
|
android:label="@string/app_name" />
|
|
|
|
<activity
|
|
android:name="com.stevesoltys.backup.activity.backup.CreateBackupActivity"
|
|
android:parentActivityName="com.stevesoltys.backup.activity.MainActivity" />
|
|
|
|
<activity
|
|
android:name="com.stevesoltys.backup.activity.restore.RestoreBackupActivity"
|
|
android:parentActivityName="com.stevesoltys.backup.activity.MainActivity" />
|
|
|
|
<service
|
|
android:name=".transport.ConfigurableBackupTransportService"
|
|
android:exported="false">
|
|
<intent-filter>
|
|
<action android:name="android.backup.TRANSPORT_HOST" />
|
|
</intent-filter>
|
|
</service>
|
|
|
|
</application>
|
|
</manifest>
|