update credits
[LibreOffice.git] / android / experimental / LibreOffice4Android / AndroidManifest.xml
blobc0f689edaca45ecde892d1ed46accadb70064fcb
1 <?xml version="1.0" encoding="utf-8"?>
2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
3       package="org.libreoffice" 
4       android:versionCode="1"
5       android:versionName="1.0">
6     
7     <uses-sdk android:minSdkVersion="4" android:targetSdkVersion="11"/>
8     <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
9     
10     <application 
11                  android:debuggable="true"
12                  android:largeHeap="true"
13                  android:hardwareAccelerated="true"
14                  android:icon="@drawable/lo_icon"
15          android:label="@string/app_name" >
16                  
17         <!-- Original Document Loader activity - file Viewer -->         
18         <activity android:name=".android.DocumentLoader"
19                           android:theme="@style/DocumentViewer"
20                   android:label="DocumentLoader"
21                   android:configChanges="orientation|keyboardHidden">
22             <!-- <intent-filter>
23                 <action android:name="android.intent.action.MAIN" />
24                 <category android:name="android.intent.category.LAUNCHER" />
25             </intent-filter>-->
26         </activity>
27         <!-- File Explorer Activities taken from eclipse workspace -->        
28         <activity
29             android:name=".ui.LibreOfficeUIActivity"
30             android:label="@string/app_name"
31              android:theme="@style/Theme.Sherlock.Light.DarkActionBar">
32             <intent-filter>
33                 <action android:name="android.intent.action.MAIN" />
34                 <category android:name="android.intent.category.LAUNCHER" />
35             </intent-filter>
36         </activity>
37         <activity android:theme="@android:style/Theme.Holo.Light" android:name=".ui.WriterViewerActivity">
38             <intent-filter android:label="writer_viewer"></intent-filter>
39         </activity>
40         <activity android:name=".ui.PreferenceEditor"></activity>
41         
42     </application>
43 </manifest>