mirror of
https://github.com/ppy/osu.git
synced 2026-05-16 14:23:22 +08:00
321e698906
https://github.com/user-attachments/assets/57d0bc9d-f081-4d04-8cb6-422a83f1a1d3 https://github.com/user-attachments/assets/208f0676-a735-4055-a422-e6a2c3847220 --- - [x] Depends on https://github.com/ppy/osu-framework/pull/6717 to work - Closes https://github.com/ppy/osu/issues/21076 - Closes https://github.com/ppy/osu/issues/22676 - Closes https://github.com/ppy/osu/issues/28666 --------- Co-authored-by: Dean Herbert <pe@ppy.sh>
18 lines
844 B
XML
18 lines
844 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="sh.ppy.osulazer" android:installLocation="auto">
|
|
<uses-sdk android:minSdkVersion="21" android:targetSdkVersion="34" />
|
|
<application android:allowBackup="true"
|
|
android:supportsRtl="true"
|
|
android:label="osu!"
|
|
android:icon="@mipmap/ic_launcher"
|
|
android:roundIcon="@mipmap/ic_launcher">
|
|
<provider android:name="androidx.core.content.FileProvider"
|
|
android:authorities="sh.ppy.osulazer.fileprovider"
|
|
android:grantUriPermissions="true"
|
|
android:exported="false">
|
|
<meta-data android:name="android.support.FILE_PROVIDER_PATHS"
|
|
android:resource="@xml/filepaths" />
|
|
</provider>
|
|
</application>
|
|
</manifest>
|