2012-06-27 09:07:53 -05:00
|
|
|
<?xml version="1.0" encoding="utf-8"?> <!-- -*- indent-tabs-mode: nil -*- -->
|
2011-11-28 17:24:01 -06:00
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
package="org.libreoffice.android.examples"
|
|
|
|
android:versionCode="1"
|
|
|
|
android:versionName="1.0">
|
|
|
|
<uses-sdk android:minSdkVersion="9" />
|
2012-03-21 12:56:18 -05:00
|
|
|
<application android:label="LO Experimental DocumentLoader"
|
2012-06-27 09:07:53 -05:00
|
|
|
android:debuggable="true"
|
|
|
|
android:largeHeap="true"
|
|
|
|
android:hardwareAccelerated="true">
|
2011-11-28 17:24:01 -06:00
|
|
|
<activity android:name=".DocumentLoader"
|
|
|
|
android:label="LO DocumentLoader"
|
|
|
|
android:configChanges="orientation|keyboardHidden">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
</application>
|
|
|
|
</manifest>
|
2012-06-27 09:07:53 -05:00
|
|
|
<!-- vim:set expandtab: -->
|