Skip to content

Instantly share code, notes, and snippets.

@nhaskins
Created September 12, 2017 18:36
Show Gist options
  • Save nhaskins/3209d39c170df99cea28a477417ad762 to your computer and use it in GitHub Desktop.
Save nhaskins/3209d39c170df99cea28a477417ad762 to your computer and use it in GitHub Desktop.
AndroidManifest.xml unity oculus
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<application>
<activity android:configChanges="locale|fontScale|keyboard|keyboardHidden|mcc|mnc|navigation|orientation|screenLayout|screenSize|smallestScreenSize|touchscreen|uiMode" android:launchMode="singleTask" android:name="com.unity3d.player.UnityPlayerActivity" android:excludeFromRecents="true">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.INFO"/>
</intent-filter>
</activity>
<meta-data android:name="unityplayer.SkipPermissionsDialog" android:value="true" />
</application>
</manifest>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment