simple_mtglife

view android/AndroidManifest.xml @ 0:6321cfa2ad62

initial
author John Tsiombikas <nuclear@member.fsf.org>
date Fri, 23 Jan 2015 15:24:27 +0200
parents
children d76fb2ffe7f5
line source
1 <?xml version="1.0"?>
2 <manifest package="com.mutantstargoat.simple_mtglife" xmlns:android="http://schemas.android.com/apk/res/android" android:versionName="1.0" android:versionCode="1" android:installLocation="auto">
3 <application android:hardwareAccelerated="true" android:name="org.qtproject.qt5.android.bindings.QtApplication" android:label="-- %%INSERT_APP_NAME%% --">
4 <activity android:configChanges="orientation|uiMode|screenLayout|screenSize|smallestScreenSize|locale|fontScale|keyboard|keyboardHidden|navigation" android:name="org.qtproject.qt5.android.bindings.QtActivity" android:label="-- %%INSERT_APP_NAME%% --" android:screenOrientation="sensorLandscape" android:launchMode="singleTop">
5 <intent-filter>
6 <action android:name="android.intent.action.MAIN"/>
7 <category android:name="android.intent.category.LAUNCHER"/>
8 </intent-filter>
9 <meta-data android:name="android.app.lib_name" android:value="-- %%INSERT_APP_LIB_NAME%% --"/>
10 <meta-data android:name="android.app.qt_sources_resource_id" android:resource="@array/qt_sources"/>
11 <meta-data android:name="android.app.repository" android:value="default"/>
12 <meta-data android:name="android.app.qt_libs_resource_id" android:resource="@array/qt_libs"/>
13 <meta-data android:name="android.app.bundled_libs_resource_id" android:resource="@array/bundled_libs"/>
14 <!-- Deploy Qt libs as part of package -->
15 <meta-data android:name="android.app.bundle_local_qt_libs" android:value="-- %%BUNDLE_LOCAL_QT_LIBS%% --"/>
16 <meta-data android:name="android.app.bundled_in_lib_resource_id" android:resource="@array/bundled_in_lib"/>
17 <meta-data android:name="android.app.bundled_in_assets_resource_id" android:resource="@array/bundled_in_assets"/>
18 <!-- Run with local libs -->
19 <meta-data android:name="android.app.use_local_qt_libs" android:value="-- %%USE_LOCAL_QT_LIBS%% --"/>
20 <meta-data android:name="android.app.libs_prefix" android:value="/data/local/tmp/qt/"/>
21 <meta-data android:name="android.app.load_local_libs" android:value="-- %%INSERT_LOCAL_LIBS%% --"/>
22 <meta-data android:name="android.app.load_local_jars" android:value="-- %%INSERT_LOCAL_JARS%% --"/>
23 <meta-data android:name="android.app.static_init_classes" android:value="-- %%INSERT_INIT_CLASSES%% --"/>
24 <!-- Messages maps -->
25 <meta-data android:value="@string/ministro_not_found_msg" android:name="android.app.ministro_not_found_msg"/>
26 <meta-data android:value="@string/ministro_needed_msg" android:name="android.app.ministro_needed_msg"/>
27 <meta-data android:value="@string/fatal_error_msg" android:name="android.app.fatal_error_msg"/>
28 <!-- Messages maps -->
30 <!-- Splash screen -->
31 <!--
32 <meta-data android:name="android.app.splash_screen_drawable" android:resource="@drawable/logo"/>
33 -->
34 <!-- Splash screen -->
36 <!-- Background running -->
37 <!-- Warning: changing this value to true may cause unexpected crashes if the
38 application still try to draw after
39 "applicationStateChanged(Qt::ApplicationSuspended)"
40 signal is sent! -->
41 <meta-data android:name="android.app.background_running" android:value="false"/>
42 <!-- Background running -->
43 </activity>
44 </application>
45 <uses-sdk android:minSdkVersion="9" android:targetSdkVersion="14"/>
46 <supports-screens android:largeScreens="true" android:normalScreens="true" android:anyDensity="true" android:smallScreens="true"/>
48 <!-- The following comment will be replaced upon deployment with default permissions based on the dependencies of the application.
49 Remove the comment if you do not require these default permissions. -->
50 <!-- %%INSERT_PERMISSIONS -->
52 <!-- The following comment will be replaced upon deployment with default features based on the dependencies of the application.
53 Remove the comment if you do not require these default features. -->
54 <!-- %%INSERT_FEATURES -->
56 </manifest>