update credits
[LibreOffice.git] / android / experimental / DocumentLoader / AndroidManifest.xml
blobf88f1ec9d7879baabbbe1d10c4c17025ffba1fe8
1 <?xml version="1.0" encoding="utf-8"?> <!-- -*- indent-tabs-mode: nil -*- -->
2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
3       package="org.libreoffice.android.examples"
4       android:versionCode="1"
5       android:versionName="1.0">
6       <uses-sdk android:minSdkVersion="9"
7                 android:targetSdkVersion="14"/>
8     <application android:label="LO Experimental DocumentLoader"
9                  android:debuggable="true"
10                  android:largeHeap="true"
11                  android:hardwareAccelerated="true">
12         <activity android:name=".DocumentLoader"
13                   android:label="LO DocumentLoader"
14                   android:configChanges="keyboardHidden">
15             <intent-filter>
16                 <action android:name="android.intent.action.MAIN" />
17                 <category android:name="android.intent.category.LAUNCHER" />
18             </intent-filter>
19         </activity>
20     </application>
21 </manifest>
22 <!-- vim:set expandtab: -->