Update Oculus vr configs and add support for accessing Oculus OpenXR runtime

This commit is contained in:
Fredia Huya-Kouadio
2021-08-27 11:16:20 -07:00
parent a09124aaa5
commit 5b8d7752b5
3 changed files with 13 additions and 42 deletions

View File

@@ -53,12 +53,16 @@
android:resizeableActivity="false"
tools:ignore="UnusedAttribute" >
<!-- Focus awareness metadata is updated at export time if the user enables it in the 'Xr Features' section. -->
<meta-data android:name="com.oculus.vr.focusaware" android:value="false" />
<!-- Focus awareness metadata is removed at export time if the xr mode is not VR. -->
<meta-data android:name="com.oculus.vr.focusaware" android:value="true" />
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
<!-- Enable access to OpenXR on Oculus mobile devices, no-op on other Android
platforms. -->
<category android:name="com.oculus.intent.category.VR" />
</intent-filter>
</activity>