Skip to content

Commit

Permalink
[Android] Don't require the storage permission
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
Triang3l committed Jul 17, 2022
1 parent 8948b2b commit 50946e5
Showing 1 changed file with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 50946e5

Please sign in to comment.