mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-07-04 13:05:19 +01:00
18 lines
630 B
XML
18 lines
630 B
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">
|
|
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
|
<uses-permission
|
|
android:name="android.permission.MANAGE_EXTERNAL_STORAGE"
|
|
tools:ignore="ScopedStorage" />
|
|
|
|
<application
|
|
android:name=".QuickstartApplicationContext"
|
|
tools:replace="android:name"
|
|
android:requestLegacyExternalStorage="true">
|
|
|
|
<activity android:name=".QuickstartRestoreActivity" />
|
|
</application>
|
|
</manifest>
|