Fix lovr.headset.getName on Quest 2;

The manifest was not properly marking Quest 2 as a supported device,
so Oculus was pretending to be a Quest 1.
This commit is contained in:
bjorn 2021-08-12 11:15:52 -07:00
parent 8ea24c266c
commit a73be7cba0
1 changed files with 1 additions and 1 deletions

View File

@ -10,10 +10,10 @@
<uses-permission android:name="android.permission.INTERNET" />
<application android:allowBackup="false" android:label="LÖVR" android:extractNativeLibs="false" android:debuggable="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"/>
<activity android:name="Activity" android:excludeFromRecents="true">
<meta-data android:name="android.app.lib_name" android:value="lovr"/>
<meta-data android:name="com.oculus.vr.focusaware" android:value="true"/>
<meta-data android:name="com.oculus.supportedDevices" android:value="quest|quest2"/>
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="com.oculus.intent.category.VR"/>