Revision control

Copy as Markdown

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.mozilla.vrbrowser">
<application tools:replace="android:theme" android:theme="@style/FxR.Dark" tools:remove="android:roundIcon">
<activity android:name=".VRBrowserActivity"
android:screenOrientation="landscape">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
<category android:name="com.htc.intent.category.VRAPP" />
</intent-filter>
<meta-data android:name="com.osterhoutgroup.display_mode" android:value="extend"/>
</activity>
<activity
android:name="com.htc.vr.sdk.VRNativeActivity"
tools:node="remove" />
<meta-data android:name="com.htc.vr.content.NumDoFHmd" android:value="6DoF"/>
<meta-data android:name="com.htc.vr.content.NumDoFController" android:value="3,6DoF"/>
<!--Please consider the DoF support of HMD and controller individually for your content.-->
<!--Set value “3DoF” if your content only considers the rotation pose. -->
<!--Set value “6DoF” if your content considers both rotation and position pose. -->
<!--Set value “3,6DoF” if your content is capable of supporting both 3 and 6 DoF playing. -->
<meta-data android:name="com.htc.vr.content.NumController" android:value="2"/> <!--fill the value of how many controllers the application can support.-->
<meta-data android:name="minWaveSDKVersion" android:value="1" />
</application>
</manifest>