Advertisement
Guest User

Untitled

a guest
Jul 27th, 2014
223
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.99 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3.    package="com.testgdx.game.android"
  4.    android:versionCode="1"
  5.    android:versionName="1.0" >
  6.  
  7.     <uses-sdk android:minSdkVersion="8" android:targetSdkVersion="15" />
  8.  
  9.     <application
  10.        android:allowBackup="true"
  11.        android:icon="@drawable/ic_launcher"
  12.        android:label="@string/app_name"
  13.        android:theme="@style/GdxTheme" >
  14.         <activity
  15.            android:name="com.testgdx.game.android.AndroidLauncher"
  16.            android:label="@string/app_name"
  17.            android:screenOrientation="landscape"
  18.            android:configChanges="keyboard|keyboardHidden|orientation|screenSize">
  19.             <intent-filter>
  20.                 <action android:name="android.intent.action.MAIN" />
  21.                 <category android:name="android.intent.category.LAUNCHER" />
  22.             </intent-filter>
  23.         </activity>
  24.     </application>
  25.  
  26. </manifest>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement