Search
lxdream.org :: lxdream/android/AndroidManifest.xml
lxdream 0.9.1
released Jun 29
Download Now
filename android/AndroidManifest.xml
changeset 1281:a3e763a4c60e
prev1274:4dff831f1a2e
author nkeynes
date Wed Sep 19 08:42:18 2012 +1000 (11 years ago)
permissions -rw-r--r--
last change Invalidate render buffers when vram32 region is written from DMA / store
queue. Patch from Guinux, thanks!
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                  android:icon="@drawable/lxdream">
     5         <activity android:name="LxdreamActivity"
     6             	android:launchMode="singleTask"
     7             	android:theme="@android:style/Theme.Holo"
     8             	android:configChanges="orientation|keyboardHidden">
     9             <intent-filter>
    10                 <action android:name="android.intent.action.MAIN" />
    11                 <category android:name="android.intent.category.LAUNCHER" />
    12             </intent-filter>
    13         </activity>
    14     </application>
    15     <uses-feature android:glEsVersion="0x00020000"/>
    16     <uses-sdk android:minSdkVersion="9" android:targetSdkVersion="11"/>
    17     <uses-permission android:name="android.permission.INTERNET" />
    18     <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
    19 </manifest>
.