mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 13:30:02 +00:00
22 lines
935 B
XML
22 lines
935 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
<uses-feature android:glEsVersion="0x00030001" />
|
|
<uses-feature android:name="android.hardware.vr.headtracking" android:version="1" android:required="true" />
|
|
|
|
<application
|
|
android:allowBackup="true"
|
|
android:icon="@drawable/ic_launcher"
|
|
android:label="@string/app_name"
|
|
android:logo="@drawable/ic_banner"
|
|
android:isGame="true"
|
|
android:banner="@drawable/tv_banner"
|
|
android:requestLegacyExternalStorage="true"
|
|
android:preserveLegacyExternalStorage="true">
|
|
|
|
<meta-data android:name="com.samsung.android.vr.application.mode" android:value="vr_only"/>
|
|
<meta-data android:name="com.oculus.supportedDevices" android:value="quest|quest2"/>
|
|
<meta-data android:name="pvr.app.type" android:value="vr" />
|
|
</application>
|
|
</manifest>
|