Advertisement
turkert

UnityApplication AndroidManifest.xml

Sep 15th, 2012
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.82 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2.  
  3. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  4.  
  5.    package="com.OnayBilisim.UnityEclipse"
  6.  
  7.    android:versionCode="1"
  8.  
  9.    android:versionName="1.0" >
  10.  
  11.  
  12.  
  13.     <uses-sdk android:minSdkVersion="10" />
  14.  
  15.  
  16.  
  17.     <application
  18.  
  19.        android:icon="@drawable/ic_launcher"
  20.  
  21.        android:label="@string/app_name" >
  22.  
  23.         <activity
  24.  
  25.            android:name=".UnityApplicationActivity" android:configChanges="orientation"
  26.  
  27.            android:label="@string/app_name" >
  28.  
  29.             <intent-filter>
  30.  
  31.                 <action android:name="android.intent.action.MAIN" />
  32.  
  33.  
  34.  
  35.                 <category android:name="android.intent.category.LAUNCHER" />
  36.  
  37.             </intent-filter>
  38.  
  39.         </activity>
  40.  
  41.     </application>
  42.  
  43.  
  44.  
  45. </manifest>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement