Warning, /utilities/keysmith/android/AndroidManifest.xml is written in an unsupported language. File is not indexed.
0001 <?xml version='1.0' encoding='utf-8'?>
0002 <!--
0003 - SPDX-License-Identifier: BSD-2-Clause
0004 - SPDX-FileCopyrightText: 2020 Nicolas Fella <nicolas.fella@gmx.de>
0005 - SPDX-FileCopyrightText: 2020 Volker Krause <vkrause@kde.org>
0006 - SPDX-FileCopyrightText: 2020 Johan Ouwerkerk <jm.ouwerkerk@gmail.com>
0007 -->
0008 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
0009 package="org.kde.keysmith"
0010 android:versionName="${versionName}"
0011 android:versionCode="${versionCode}"
0012 android:installLocation="auto">
0013 <application android:name="org.qtproject.qt.android.bindings.QtApplication" android:label="Keysmith" android:icon="@drawable/keysmith">
0014 <activity android:configChanges="orientation|uiMode|screenLayout|screenSize|smallestScreenSize|layoutDirection|locale|fontScale|keyboard|keyboardHidden|navigation"
0015 android:name="org.qtproject.qt.android.bindings.QtActivity"
0016 android:label="Keysmith"
0017 android:windowSoftInputMode="adjustResize"
0018 android:launchMode="singleTop"
0019 android:exported="true">
0020
0021 <intent-filter>
0022 <action android:name="android.intent.action.MAIN"/>
0023 <category android:name="android.intent.category.LAUNCHER"/>
0024 </intent-filter>
0025
0026 <meta-data android:name="android.app.lib_name" android:value="keysmith"/>
0027 <meta-data android:name="android.app.repository" android:value="default"/>
0028 <meta-data android:name="android.app.qt_libs_resource_id" android:resource="@array/qt_libs"/>
0029 <meta-data android:name="android.app.bundled_libs_resource_id" android:resource="@array/bundled_libs"/>
0030 <meta-data android:name="android.app.extract_android_style" android:value="minimal"/>
0031
0032 <!-- Deploy Qt libs as part of package -->
0033 <meta-data android:name="android.app.bundle_local_qt_libs" android:value="-- %%BUNDLE_LOCAL_QT_LIBS%% --"/>
0034 <meta-data android:name="android.app.load_local_libs_resource_id" android:resource="@array/load_local_libs"/>
0035 <!-- Run with local libs -->
0036 <meta-data android:name="android.app.use_local_qt_libs" android:value="-- %%USE_LOCAL_QT_LIBS%% --"/>
0037 <meta-data android:name="android.app.libs_prefix" android:value="/data/local/tmp/qt/"/>
0038 <meta-data android:name="android.app.load_local_libs" android:value="-- %%INSERT_LOCAL_LIBS%% --"/>
0039 <meta-data android:name="android.app.load_local_jars" android:value="-- %%INSERT_LOCAL_JARS%% --"/>
0040 <meta-data android:name="android.app.static_init_classes" android:value="-- %%INSERT_INIT_CLASSES%% --"/>
0041 <!-- Messages maps -->
0042 <meta-data android:value="@string/fatal_error_msg" android:name="android.app.fatal_error_msg"/>
0043
0044 <!-- Background running -->
0045 <meta-data android:name="android.app.background_running" android:value="false"/>
0046
0047 <!-- auto screen scale factor -->
0048 <meta-data android:name="android.app.auto_screen_scale_factor" android:value="true"/>
0049 </activity>
0050 </application>
0051
0052 <supports-screens android:largeScreens="true" android:normalScreens="true" android:anyDensity="true" android:smallScreens="true"/>
0053
0054 </manifest>