Want more features on Pastebin? Sign Up, it's FREE!
Guest

NonODKOuyaAndroidManifest.xml

By: Ayrik on Jan 16th, 2013  |  syntax: XML  |  size: 2.02 KB  |  views: 71  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest
  3.    xmlns:android="http://schemas.android.com/apk/res/android"
  4.    package="com.unity3d.player"
  5.         android:installLocation="preferExternal"
  6.    android:versionCode="1"
  7.    android:versionName="1.0">
  8.     <supports-screens
  9.        android:smallScreens="true"
  10.        android:normalScreens="true"
  11.        android:largeScreens="true"
  12.        android:xlargeScreens="true"
  13.        android:anyDensity="true"/>
  14.  
  15.     <application
  16.                 android:icon="@drawable/app_icon"
  17.        android:label="@string/app_name"
  18.        android:debuggable="true">
  19.         <activity android:name="com.unity3d.player.UnityPlayerProxyActivity"
  20.                  android:label="@string/app_name"
  21.                  android:configChanges="fontScale|keyboard|keyboardHidden|locale|mnc|mcc|navigation|orientation|screenLayout|screenSize|smallestScreenSize|uiMode|touchscreen">
  22.             <intent-filter>
  23.                 <action android:name="android.intent.action.MAIN" />
  24.                 <category android:name="android.intent.category.LAUNCHER" />
  25.                                 <category android:name="ouya.intent.category.GAME"/>
  26.             </intent-filter>
  27.         </activity>
  28.         <activity android:name="com.unity3d.player.UnityPlayerActivity"
  29.                  android:label="@string/app_name"
  30.                  android:configChanges="fontScale|keyboard|keyboardHidden|locale|mnc|mcc|navigation|orientation|screenLayout|screenSize|smallestScreenSize|uiMode|touchscreen">
  31.         </activity>
  32.         <activity android:name="com.unity3d.player.UnityPlayerNativeActivity"
  33.                  android:label="@string/app_name"
  34.                  android:configChanges="fontScale|keyboard|keyboardHidden|locale|mnc|mcc|navigation|orientation|screenLayout|screenSize|smallestScreenSize|uiMode|touchscreen">
  35.             <meta-data android:name="android.app.lib_name" android:value="unity" />
  36.             <meta-data android:name="unityplayer.ForwardNativeEventsToDalvik" android:value="false" />
  37.         </activity>
  38.     </application>
  39. </manifest>
clone this paste RAW Paste Data