Files
loongoffice/android/experimental/DocumentLoader/AndroidManifest.xml
Tor Lillqvist c2756737e0 Require Android API level 15, which is from December 2011
Note that this doesn't really mean a lot for the NDK.

Change-Id: I4061cb856055ae126aadf56afc462182a875e65f
2014-03-05 16:13:45 +02:00

24 lines
1.0 KiB
XML

<?xml version="1.0" encoding="utf-8"?> <!-- -*- indent-tabs-mode: nil -*- -->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.libreoffice.android.examples"
android:installLocation="preferExternal"
android:versionCode="1"
android:versionName="1.0">
<uses-sdk android:minSdkVersion="15"
android:targetSdkVersion="15"/>
<application android:label="LO Experimental DocumentLoader"
android:debuggable="true"
android:largeHeap="true"
android:hardwareAccelerated="true">
<activity android:name=".DocumentLoader"
android:label="LO DocumentLoader"
android:configChanges="keyboardHidden">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
<!-- vim:set expandtab: -->