forked from GodotVR/godot_openxr_vendors
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
24 lines (19 loc) · 752 Bytes
/
Copy pathAndroidManifest.xml
File metadata and controls
24 lines (19 loc) · 752 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.godotengine.openxrloaders.meta">
<uses-feature
android:name="android.hardware.vr.headtracking"
android:required="true"
android:version="1"/>
<application>
<meta-data
android:name="org.godotengine.plugin.v2.GodotOpenXRMeta"
android:value="org.godotengine.openxrloaders.meta.GodotOpenXRMeta" />
<meta-data
android:name="com.oculus.supportedDevices"
android:value="quest|quest2|questpro" />
<meta-data
android:name="com.oculus.vr.focusaware"
android:value="true" />
</application>
</manifest>