summaryrefslogtreecommitdiff
path: root/android/qa/sc/AndroidManifest.xml
blob: 92b374ea2c44419c0c2215431055a791c4e277ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
      package="org.libreoffice.android.qa.sc"
      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="LO Calc unit tests"
                  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" />
            </intent-filter>
        </activity>
    </application>
</manifest>