Assignment for RMIT Mixed Reality in 2020
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
1.1 KiB

  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. <application
  5. android:label="@string/app_name"
  6. android:icon="@mipmap/app_icon">
  7. <activity
  8. android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen"
  9. android:configChanges="locale|fontScale|keyboard|keyboardHidden|mcc|mnc|navigation|orientation|screenLayout|screenSize|smallestScreenSize|touchscreen|uiMode"
  10. android:launchMode="singleTask"
  11. android:name="com.unity3d.player.UnityPlayerActivity"
  12. android:excludeFromRecents="true">
  13. <intent-filter>
  14. <action android:name="android.intent.action.MAIN"/>
  15. <category android:name="android.intent.category.LAUNCHER"/>
  16. </intent-filter>
  17. </activity>
  18. <meta-data android:name="unityplayer.SkipPermissionsDialog" android:value="false" />
  19. <meta-data android:name="com.samsung.android.vr.application.mode" android:value="vr_only"/>
  20. </application>
  21. </manifest>