Search
lxdream.org :: lxdream/android/AndroidManifest.xml
lxdream 0.9.1
released Jun 29
Download Now
filename android/AndroidManifest.xml
changeset 1239:be3121267597
next1245:01e0020adf88
author nkeynes
date Tue Feb 28 17:25:26 2012 +1000 (12 years ago)
permissions -rw-r--r--
last change Implement display output for the GLES2 case (no fixed function
rendering)
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:theme="@android:style/Theme.NoTitleBar.Fullscreen"
     6             	android:launchMode="singleTask"
     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="8"/>
    16 </manifest>
.