Rev 196 | Details | Compare with Previous | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 133 | chris | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
||
| 3 | package="com.gebauz.BauzoidTest" |
||
| 4 | android:versionCode="1" |
||
| 5 | android:versionName="1.0"> |
||
| 196 | chris | 6 | <uses-sdk android:minSdkVersion="8" android:targetSdkVersion="9"/> |
| 151 | chris | 7 | <uses-feature android:glEsVersion="0x00020000" android:required="true"></uses-feature> |
| 133 | chris | 8 | |
| 9 | <application android:icon="@drawable/icon" android:label="@string/app_name"> |
||
| 10 | <activity android:name=".BauzoidTestActivity" |
||
| 11 | android:label="@string/app_name"> |
||
| 12 | <intent-filter> |
||
| 13 | <action android:name="android.intent.action.MAIN" /> |
||
| 14 | <category android:name="android.intent.category.LAUNCHER" /> |
||
| 15 | </intent-filter> |
||
| 16 | </activity> |
||
| 17 | |||
| 18 | </application> |
||
| 19 | </manifest> |