Rev 215 | Details | Compare with Previous | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 196 | chris | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
||
| 3 | package="com.gebauz.libGDXtest" |
||
| 4 | android:versionCode="1" |
||
| 5 | android:versionName="1.0" > |
||
| 6 | |||
| 249 | chris | 7 | <uses-sdk android:minSdkVersion="7" android:targetSdkVersion="9"/> |
| 196 | chris | 8 | |
| 9 | <application |
||
| 10 | android:icon="@drawable/ic_launcher" |
||
| 11 | android:label="@string/app_name" > |
||
| 12 | <activity |
||
| 13 | android:name=".libGDXtestActivity" |
||
| 215 | chris | 14 | android:label="@string/app_name" |
| 15 | android:screenOrientation="landscape"> |
||
| 196 | chris | 16 | <intent-filter> |
| 17 | <action android:name="android.intent.action.MAIN" /> |
||
| 18 | |||
| 19 | <category android:name="android.intent.category.LAUNCHER" /> |
||
| 20 | </intent-filter> |
||
| 21 | </activity> |
||
| 22 | </application> |
||
| 23 | |||
| 24 | </manifest> |