mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 05:19:56 +00:00
24 lines
1.1 KiB
XML
24 lines
1.1 KiB
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" />
|
|
<uses-feature android:name="com.oculus.feature.PASSTHROUGH" android:required="false" />
|
|
<uses-feature android:name="oculus.software.handtracking" android:required="false" />
|
|
|
|
<application
|
|
android:allowBackup="true"
|
|
android:icon="@mipmap/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>
|