blob: c76425eae53242a0a7404009cb1a44cfb102c821 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.libreoffice.android.libo"
android:versionCode="1"
android:versionName="1.0">
<uses-sdk android:minSdkVersion="9" />
<application android:label="@string/app_name"
android:debuggable="true">
<!-- Bootstrap is the subclass of android.app.NativeActivity -->
<activity android:name="org.libreoffice.android.Bootstrap"
android:label="LibreOffice Viewer test"
android:configChanges="orientation|keyboardHidden">
<!-- Tell NativeActivity the name of our .so -->
<meta-data android:name="android.app.lib_name"
android:value="lo-bootstrap" />
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
<extra android:name="lo-main-library" android:value="libmergedlo" />
</intent-filter>
</activity>
</application>
</manifest>
|