]> sigrok.org Git - pulseview.git/blob - android/AndroidManifest.xml
android/: Add some missing license headers.
[pulseview.git] / android / AndroidManifest.xml
1 <?xml version='1.0' encoding='utf-8'?>
2 <!--
3    This file is part of the PulseView project.
4
5    Copyright (C) 2014 Marcus Comstedt <marcus@mc.pp.se>
6
7    This program is free software: you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation, either version 3 of the License, or
10    (at your option) any later version.
11
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16
17    You should have received a copy of the GNU General Public License
18    along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 -->
20 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
21                 package="org.sigrok.pulseview"
22                 android:versionName="0.2.0"
23                 android:versionCode="20"
24                 android:installLocation="auto">
25         <application android:hardwareAccelerated="true"
26                  android:name="org.sigrok.pulseview.PulseViewApplication"
27                  android:label="@string/pv_app_name"
28                  android:icon="@drawable/logo">
29                 <activity android:configChanges="orientation|uiMode|screenLayout|screenSize|smallestScreenSize|locale|fontScale|keyboard|keyboardHidden|navigation"
30                                 android:name="org.sigrok.pulseview.PulseViewActivity"
31                                 android:label="@string/pv_app_name"
32                                 android:screenOrientation="unspecified"
33                                 android:launchMode="singleTop">
34                         <intent-filter>
35                                 <action android:name="android.intent.action.MAIN"/>
36                                 <category android:name="android.intent.category.LAUNCHER"/>
37                         </intent-filter>
38                         <meta-data android:name="android.app.lib_name" android:value="pulseview"/>
39                         <meta-data android:name="android.app.qt_sources_resource_id" android:resource="@array/qt_sources"/>
40                         <meta-data android:name="android.app.repository" android:value="default"/>
41                         <meta-data android:name="android.app.qt_libs_resource_id" android:resource="@array/qt_libs"/>
42                         <meta-data android:name="android.app.bundled_libs_resource_id" android:resource="@array/bundled_libs"/>
43                         <!-- Deploy Qt libs as part of package -->
44                         <meta-data android:name="android.app.bundle_local_qt_libs" android:value="0"/>
45                         <meta-data android:name="android.app.bundled_in_lib_resource_id" android:resource="@array/bundled_in_lib"/>
46                         <meta-data android:name="android.app.bundled_in_assets_resource_id" android:resource="@array/bundled_in_assets"/>
47                         <!-- Run with local libs -->
48                         <meta-data android:name="android.app.use_local_qt_libs" android:value="0"/>
49                         <meta-data android:name="android.app.libs_prefix" android:value="/data/local/tmp/qt/"/>
50                         <meta-data android:name="android.app.load_local_libs" android:value="plugins/platforms/android/libqtforandroid.so"/>
51                         <meta-data android:name="android.app.load_local_jars" android:value="jar/QtAndroid.jar:jar/QtAndroidAccessibility.jar:jar/QtAndroid-bundled.jar:jar/QtAndroidAccessibility-bundled.jar"/>
52                         <meta-data android:name="android.app.static_init_classes" android:value=""/>
53                         <!--  Messages maps -->
54                         <meta-data android:value="@string/ministro_not_found_msg" android:name="android.app.ministro_not_found_msg"/>
55                         <meta-data android:value="@string/ministro_needed_msg" android:name="android.app.ministro_needed_msg"/>
56                         <meta-data android:value="@string/fatal_error_msg" android:name="android.app.fatal_error_msg"/>
57                         <!--  Messages maps -->
58                         <!-- Splash screen -->
59                         <!--
60                         <meta-data android:name="android.app.splash_screen_drawable" android:resource="@drawable/logo"/>
61                         -->
62                         <!-- Splash screen -->
63                 </activity>
64         </application>
65         <uses-sdk android:minSdkVersion="12" android:targetSdkVersion="14"/>
66         <supports-screens android:largeScreens="true" android:normalScreens="true" android:anyDensity="true" android:smallScreens="true"/>
67         <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
68 </manifest>