Warning, /utilities/kweather/android/AndroidManifest.xml is written in an unsupported language. File is not indexed.

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