comparison android/AndroidManifest.xml @ 2721:c0be28906839

Android: Update the manifest with READ/MANAGE_EXTERNAL_STORAGE. These need to be present, and enabled in the Application settings.... Otherwise we won't be able to open the files selected by the picker.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Thu, 09 Dec 2021 04:52:01 +0000
parents 25c56d77d016
children 61821532faa0
comparison
equal deleted inserted replaced
2720:9ce1649b0fbd 2721:c0be28906839
1 <?xml version="1.0" encoding="utf-8"?> 1 <?xml version="1.0" encoding="utf-8"?>
2 <manifest xmlns:android="http://schemas.android.com/apk/res/android" 2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
3 package="org.dbsoft.dwindows"> 3 package="org.dbsoft.dwindows">
4 4
5 <uses-permission android:name="android.permission.INTERNET"/> 5 <uses-permission android:name="android.permission.INTERNET"/>
6 <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
7 <uses-permission android:name="android.permission.MANAGE_EXTERNAL_STORAGE"/>
6 8
7 <application 9 <application
8 android:allowBackup="true" 10 android:allowBackup="true"
9 android:icon="@mipmap/ic_launcher" 11 android:icon="@mipmap/ic_launcher"
10 android:label="@string/app_name" 12 android:label="@string/app_name"