Advertisement
arun02139

Editor file 3 (Assets/Plugins/Android/AndroidManifest.xml)

Aug 20th, 2019
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.11 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8" standalone="no"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android" android:installLocation="auto">
  3.     <uses-feature android:name="android.hardware.vr.headtracking" android:version="1" android:required="true" /><!-- Request the headset DoF mode -->
  4.     <application
  5.        android:allowBackup="true">
  6.         <activity
  7.            android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen"
  8.            android:configChanges="locale|fontScale|keyboard|keyboardHidden|mcc|mnc|navigation|orientation|screenLayout|screenSize|smallestScreenSize|touchscreen|uiMode"
  9.            android:launchMode="singleTask"
  10.            android:name="com.unity3d.player.UnityPlayerActivity"
  11.            android:excludeFromRecents="true">
  12.             <intent-filter>
  13.                 <action android:name="android.intent.action.MAIN"/>
  14.                 <category android:name="android.intent.category.INFO"/>
  15.             </intent-filter>
  16.         </activity>
  17.         <meta-data android:name="unityplayer.SkipPermissionsDialog" android:value="true" />
  18.     </application>
  19. </manifest>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement