filename | android/AndroidManifest.xml |
changeset | 1245:01e0020adf88 |
prev | 1239:be3121267597 |
next | 1254:1ca50e1330cd |
author | nkeynes |
date | Fri Mar 02 23:49:10 2012 +1000 (10 years ago) |
permissions | -rw-r--r-- |
last change | Android WIP: * Rename gui_jni.c to gui_android.c - now quite android specific. * Implement generic EGL driver with very minimal Java wrapper * Run emulation in separate thread, and implement simple queue for inter-thread communication. * Add menu/action-bar items for start + reset |
view | annotate | diff | log | raw |
1 <?xml version="1.0" encoding="utf-8"?>
2 <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="org.lxdream">
3 <application android:label="@string/lxdream_activity">
4 <activity android:name="LxdreamActivity"
5 android:launchMode="singleTask"
6 android:theme="@android:style/Theme.Holo"
7 android:configChanges="orientation|keyboardHidden">
8 <intent-filter>
9 <action android:name="android.intent.action.MAIN" />
10 <category android:name="android.intent.category.LAUNCHER" />
11 </intent-filter>
12 </activity>
13 </application>
14 <uses-feature android:glEsVersion="0x00020000"/>
15 <uses-sdk android:minSdkVersion="11"/>
16 </manifest>
.