2022-01-04 14:37:35 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools">
|
|
|
|
|
|
|
|
<application>
|
|
|
|
<!-- Remove permission requirements only for debug versions to make development easier -->
|
|
|
|
<activity
|
|
|
|
android:name="com.stevesoltys.seedvault.settings.SettingsActivity"
|
|
|
|
android:exported="true"
|
2022-10-14 21:33:04 +02:00
|
|
|
tools:remove="android:permission" />
|
2022-01-04 14:37:35 +01:00
|
|
|
<activity
|
|
|
|
android:name="com.stevesoltys.seedvault.restore.RestoreActivity"
|
|
|
|
android:exported="true"
|
2022-10-14 21:33:04 +02:00
|
|
|
tools:remove="android:permission" />
|
2022-01-04 14:37:35 +01:00
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|