forked from amazingfate/loongoffice
Note that this doesn't really mean a lot for the NDK. Change-Id: I4061cb856055ae126aadf56afc462182a875e65f
24 lines
1.0 KiB
XML
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: -->
|