Warning, /plasma-mobile/plasma-camera/AndroidManifest.xml is written in an unsupported language. File is not indexed.

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