Skip to content

Commit

Permalink
Add inline comment matching framework
Browse files Browse the repository at this point in the history
  • Loading branch information
peppy committed Dec 4, 2023
1 parent e0eea07 commit c2a4a6d
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion osu.Android/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,12 @@
<!-- for editor usage -->
<uses-permission android:name="android.permission.READ_MEDIA_IMAGES" />
<uses-permission android:name="android.permission.READ_MEDIA_AUDIO" />
<!--
READ_MEDIA_* permissions are available only on API 33 or greater. Devices with older android versions
don't understand the new permissions, so request the old READ_EXTERNAL_STORAGE permission to get storage access.
Since the old permission has no effect on >= API 33, don't request it.
Care needs to be taken to ensure runtime permission checks target the correct permission for the API level.
-->
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" android:maxSdkVersion="32"/>
</manifest>
</manifest>

0 comments on commit c2a4a6d

Please sign in to comment.