Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
ppy
GitHub Repository: ppy/osu
Path: blob/master/osu.Android/AndroidManifest.xml
2260 views
1
<?xml version="1.0" encoding="utf-8"?>
2
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="sh.ppy.osulazer" android:installLocation="auto">
3
<uses-sdk android:minSdkVersion="21" android:targetSdkVersion="34" />
4
<application android:allowBackup="true"
5
android:supportsRtl="true"
6
android:label="osu!"
7
android:icon="@mipmap/ic_launcher"
8
android:roundIcon="@mipmap/ic_launcher" />
9
<!-- for editor usage -->
10
<uses-permission android:name="android.permission.READ_MEDIA_IMAGES" />
11
<uses-permission android:name="android.permission.READ_MEDIA_AUDIO" />
12
<!--
13
READ_MEDIA_* permissions are available only on API 33 or greater. Devices with older android versions
14
don't understand the new permissions, so request the old READ_EXTERNAL_STORAGE permission to get storage access.
15
Since the old permission has no effect on >= API 33, don't request it.
16
17
Care needs to be taken to ensure runtime permission checks target the correct permission for the API level.
18
-->
19
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" android:maxSdkVersion="32"/>
20
</manifest>
21
22