[Android] Don't require the storage permission
GPU traces in the trace viewer are accessed via the Storage Access Framework, which doesn't require the storage permissions. Games will be accessed using the SAF too (directories containing games as document trees with persistable URI permissions). The storage permissions are also not required for accessing the application's external or internal storage directory that will contain the save files.
This commit is contained in:
parent
8948b2b557
commit
50946e5c5f
|
@ -15,12 +15,6 @@
|
|||
<!-- Granted automatically - guest sockets. -->
|
||||
<uses-permission android:name="android.permission.INTERNET" />
|
||||
|
||||
<!--
|
||||
Needs to be requested - loading games from outside the app data directory.
|
||||
WRITE_EXTERNAL_STORAGE is not required to write to the external app data directory since API 19.
|
||||
-->
|
||||
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
||||
|
||||
<application
|
||||
android:allowBackup="true"
|
||||
android:icon="@mipmap/ic_launcher"
|
||||
|
|
Loading…
Reference in New Issue