This website uses cookies to improve our services and deliver relevant ads.
By interacting with this site, you agree to this use. For more information, see our Cookies Policy
Configure your manifest with the necessary VR settings, as shown in the following manifest segment.
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="<packagename>" android:versionCode="1" android:versionName="1.0" android:installLocation=”auto”> <application android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen" > <meta-data android:name="com.samsung.android.vr.application.mode" android:value="vr_only"/> <activity android:screenOrientation="landscape" android:launchMode="singleTask" android:configChanges="screenSize|orientation|keyboardHidden|keyboard"> </activity> </application> <uses-sdk android:minSdkVersion="21" android:targetSdkVersion="21" /> <uses-feature android:glEsVersion="0x00030000" /> </manifest>
Applications submission requirements may require additional adjustments to the manifest. Please refer to Application Manifests for Release Versions in our Publishing Guide.