mirror of
https://github.com/vcmi/vcmi.git
synced 2024-11-24 08:32:34 +02:00
92 lines
4.6 KiB
XML
92 lines
4.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="eu.vcmi.vcmi">
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
<uses-permission android:name="android.permission.VIBRATE" />
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
|
|
<supports-screens
|
|
android:largeScreens="true"
|
|
android:xlargeScreens="true" />
|
|
<application
|
|
android:name="org.qtproject.qt5.android.bindings.QtApplication"
|
|
android:hardwareAccelerated="true"
|
|
android:hasFragileUserData="true"
|
|
android:allowBackup="false"
|
|
android:installLocation="auto"
|
|
android:icon="@mipmap/ic_launcher"
|
|
android:label="${applicationLabel}"
|
|
android:testOnly="false"
|
|
android:supportsRtl="true"
|
|
android:usesCleartextTraffic="false">
|
|
<activity
|
|
android:name=".ActivityLauncher"
|
|
android:configChanges="orientation|uiMode|screenLayout|screenSize|smallestScreenSize|layoutDirection|locale|fontScale|keyboard|keyboardHidden|navigation|mcc|mnc|density"
|
|
android:exported="true"
|
|
android:screenOrientation="sensorLandscape">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
<category android:name="android.intent.category.LAUNCHER"/>
|
|
</intent-filter>
|
|
|
|
<meta-data android:name="android.app.lib_name" android:value="-- %%INSERT_APP_LIB_NAME%% --"/>
|
|
<meta-data android:name="android.app.qt_sources_resource_id" android:resource="@array/qt_sources"/>
|
|
<meta-data android:name="android.app.repository" android:value="default"/>
|
|
<meta-data android:name="android.app.qt_libs_resource_id" android:resource="@array/qt_libs"/>
|
|
<meta-data android:name="android.app.bundled_libs_resource_id" android:resource="@array/bundled_libs"/>
|
|
<!-- Deploy Qt libs as part of package -->
|
|
<meta-data android:name="android.app.bundle_local_qt_libs" android:value="-- %%BUNDLE_LOCAL_QT_LIBS%% --"/>
|
|
<!-- Run with local libs -->
|
|
<meta-data android:name="android.app.use_local_qt_libs" android:value="-- %%USE_LOCAL_QT_LIBS%% --"/>
|
|
<meta-data android:name="android.app.libs_prefix" android:value="/data/local/tmp/qt/"/>
|
|
<meta-data android:name="android.app.load_local_libs_resource_id" android:resource="@array/load_local_libs"/>
|
|
<meta-data android:name="android.app.load_local_jars" android:value="-- %%INSERT_LOCAL_JARS%% --"/>
|
|
<meta-data android:name="android.app.static_init_classes" android:value="-- %%INSERT_INIT_CLASSES%% --"/>
|
|
|
|
<!-- Messages maps -->
|
|
<meta-data android:value="@string/ministro_not_found_msg" android:name="android.app.ministro_not_found_msg"/>
|
|
<meta-data android:value="@string/ministro_needed_msg" android:name="android.app.ministro_needed_msg"/>
|
|
<meta-data android:value="@string/fatal_error_msg" android:name="android.app.fatal_error_msg"/>
|
|
<meta-data android:value="@string/unsupported_android_version" android:name="android.app.unsupported_android_version"/>
|
|
<!-- Messages maps -->
|
|
|
|
<!-- Background running -->
|
|
<!-- Warning: changing this value to true may cause unexpected crashes if the
|
|
application still try to draw after
|
|
"applicationStateChanged(Qt::ApplicationSuspended)"
|
|
signal is sent! -->
|
|
<meta-data android:name="android.app.background_running" android:value="false"/>
|
|
<!-- Background running -->
|
|
|
|
<!-- auto screen scale factor -->
|
|
<meta-data android:name="android.app.auto_screen_scale_factor" android:value="false"/>
|
|
<!-- auto screen scale factor -->
|
|
|
|
<!-- extract android style -->
|
|
<!-- available android:values :
|
|
* default - In most cases this will be the same as "full", but it can also be something else if needed, e.g., for compatibility reasons
|
|
* full - useful QWidget & Quick Controls 1 apps
|
|
* minimal - useful for Quick Controls 2 apps, it is much faster than "full"
|
|
* none - useful for apps that don't use any of the above Qt modules
|
|
-->
|
|
<meta-data android:name="android.app.extract_android_style" android:value="none"/>
|
|
<!-- extract android style -->
|
|
</activity>
|
|
|
|
<activity
|
|
android:name=".VcmiSDLActivity"
|
|
android:configChanges="orientation|uiMode|screenLayout|screenSize|smallestScreenSize|layoutDirection|locale|fontScale|keyboard|keyboardHidden|navigation|mcc|mnc|density"
|
|
android:label="@string/app_name"
|
|
android:launchMode="singleTop"
|
|
android:screenOrientation="sensorLandscape" />
|
|
|
|
<service
|
|
android:name=".ServerService"
|
|
android:process="eu.vcmi.vcmi.srv"
|
|
android:description="@string/server_name"
|
|
android:exported="false"/>
|
|
</application>
|
|
|
|
</manifest>
|