Advertisement
Guest User

Untitled

a guest
Jul 21st, 2017
2,143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.15 KB | None | 0 0
  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.    xmlns:tools="http://schemas.android.com/tools"
  6.    android:installLocation="preferExternal"
  7.    android:versionCode="1"
  8.    android:versionName="1.0">
  9.   <supports-screens
  10.      android:smallScreens="true"
  11.      android:normalScreens="true"
  12.      android:largeScreens="true"
  13.      android:xlargeScreens="true"
  14.      android:anyDensity="true"/>
  15.  
  16.   <application
  17.    android:name="android.support.multidex.MultiDexApplication" >
  18.     android:theme="@style/UnityThemeSelector"
  19.     android:icon="@drawable/app_icon"
  20.     android:label="@string/app_name"
  21.     android:debuggable="true">
  22.     <activity android:name="com.unity3d.player.UnityPlayerActivity"
  23.              android:label="@string/app_name">
  24.       <intent-filter>
  25.         <action android:name="android.intent.action.MAIN" />
  26.         <category android:name="android.intent.category.LAUNCHER" />
  27.       </intent-filter>
  28.       <meta-data android:name="unityplayer.UnityActivity" android:value="true" />
  29.     </activity>
  30.   </application>
  31. </manifest>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement