AndroidManifest.OVRSubmission.xml 1.2 KB

1234567891011121314151617181920212223
  1. <?xml version="1.0" encoding="utf-8" standalone="no"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:installLocation="auto">
  4. <!-- Request the headset DoF mode -->
  5. <!-- Request the headset handtracking mode -->
  6. <application
  7. android:label="@string/app_name"
  8. android:icon="@mipmap/app_icon">
  9. <activity
  10. android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen"
  11. android:configChanges="locale|fontScale|keyboard|keyboardHidden|mcc|mnc|navigation|orientation|screenLayout|screenSize|smallestScreenSize|touchscreen|uiMode"
  12. android:launchMode="singleTask"
  13. android:name="com.unity3d.player.UnityPlayerActivity"
  14. android:excludeFromRecents="true">
  15. <intent-filter>
  16. <action android:name="android.intent.action.MAIN"/>
  17. <category android:name="android.intent.category.LAUNCHER"/>
  18. </intent-filter>
  19. </activity>
  20. <meta-data android:name="unityplayer.SkipPermissionsDialog" android:value="false" />
  21. <meta-data android:name="com.samsung.android.vr.application.mode" android:value="vr_only"/>
  22. </application>
  23. </manifest>