2012-06-22 11:32:08 -05:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
package="org.libreoffice"
|
|
|
|
android:versionCode="1"
|
|
|
|
android:versionName="1.0">
|
|
|
|
|
|
|
|
<uses-sdk android:minSdkVersion="4" android:targetSdkVersion="11"/>
|
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
|
|
|
|
|
|
|
|
<application
|
|
|
|
android:debuggable="true"
|
2012-08-03 04:00:39 -05:00
|
|
|
android:largeHeap="true"
|
|
|
|
android:hardwareAccelerated="true"
|
2012-06-22 11:32:08 -05:00
|
|
|
android:icon="@drawable/lo_icon"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:theme="@android:style/Theme.Holo.Light">
|
|
|
|
|
|
|
|
<!-- Original Document Loader activity - file Viewer -->
|
2012-06-25 08:25:00 -05:00
|
|
|
<activity android:name=".android.DocumentLoader"
|
2012-06-27 16:56:06 -05:00
|
|
|
android:theme="@style/DocumentViewer"
|
2012-06-25 08:25:00 -05:00
|
|
|
android:label="DocumentLoader"
|
2012-06-22 11:32:08 -05:00
|
|
|
android:configChanges="orientation|keyboardHidden">
|
|
|
|
<!-- <intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>-->
|
|
|
|
</activity>
|
|
|
|
<!-- File Explorer Activities taken from eclipse workspace -->
|
|
|
|
<activity
|
|
|
|
android:name=".ui.LibreOfficeUIActivity"
|
2012-07-13 10:38:25 -05:00
|
|
|
android:label="@string/app_name"
|
|
|
|
android:theme="@style/FileExplorer">
|
2012-06-22 11:32:08 -05:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
<activity android:theme="@android:style/Theme.Holo.Light" android:name=".ui.WriterViewerActivity">
|
|
|
|
<intent-filter android:label="writer_viewer"></intent-filter>
|
|
|
|
</activity>
|
|
|
|
<activity android:name=".ui.PreferenceEditor"></activity>
|
|
|
|
|
|
|
|
</application>
|
|
|
|
</manifest>
|