simple_mtglife

annotate 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
rev   line source
nuclear@0 1 <?xml version="1.0"?>
nuclear@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">
nuclear@0 3 <application android:hardwareAccelerated="true" android:name="org.qtproject.qt5.android.bindings.QtApplication" android:label="-- %%INSERT_APP_NAME%% --">
nuclear@0 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">
nuclear@0 5 <intent-filter>
nuclear@0 6 <action android:name="android.intent.action.MAIN"/>
nuclear@0 7 <category android:name="android.intent.category.LAUNCHER"/>
nuclear@0 8 </intent-filter>
nuclear@0 9 <meta-data android:name="android.app.lib_name" android:value="-- %%INSERT_APP_LIB_NAME%% --"/>
nuclear@0 10 <meta-data android:name="android.app.qt_sources_resource_id" android:resource="@array/qt_sources"/>
nuclear@0 11 <meta-data android:name="android.app.repository" android:value="default"/>
nuclear@0 12 <meta-data android:name="android.app.qt_libs_resource_id" android:resource="@array/qt_libs"/>
nuclear@0 13 <meta-data android:name="android.app.bundled_libs_resource_id" android:resource="@array/bundled_libs"/>
nuclear@0 14 <!-- Deploy Qt libs as part of package -->
nuclear@0 15 <meta-data android:name="android.app.bundle_local_qt_libs" android:value="-- %%BUNDLE_LOCAL_QT_LIBS%% --"/>
nuclear@0 16 <meta-data android:name="android.app.bundled_in_lib_resource_id" android:resource="@array/bundled_in_lib"/>
nuclear@0 17 <meta-data android:name="android.app.bundled_in_assets_resource_id" android:resource="@array/bundled_in_assets"/>
nuclear@0 18 <!-- Run with local libs -->
nuclear@0 19 <meta-data android:name="android.app.use_local_qt_libs" android:value="-- %%USE_LOCAL_QT_LIBS%% --"/>
nuclear@0 20 <meta-data android:name="android.app.libs_prefix" android:value="/data/local/tmp/qt/"/>
nuclear@0 21 <meta-data android:name="android.app.load_local_libs" android:value="-- %%INSERT_LOCAL_LIBS%% --"/>
nuclear@0 22 <meta-data android:name="android.app.load_local_jars" android:value="-- %%INSERT_LOCAL_JARS%% --"/>
nuclear@0 23 <meta-data android:name="android.app.static_init_classes" android:value="-- %%INSERT_INIT_CLASSES%% --"/>
nuclear@0 24 <!-- Messages maps -->
nuclear@0 25 <meta-data android:value="@string/ministro_not_found_msg" android:name="android.app.ministro_not_found_msg"/>
nuclear@0 26 <meta-data android:value="@string/ministro_needed_msg" android:name="android.app.ministro_needed_msg"/>
nuclear@0 27 <meta-data android:value="@string/fatal_error_msg" android:name="android.app.fatal_error_msg"/>
nuclear@0 28 <!-- Messages maps -->
nuclear@0 29
nuclear@0 30 <!-- Splash screen -->
nuclear@0 31 <!--
nuclear@0 32 <meta-data android:name="android.app.splash_screen_drawable" android:resource="@drawable/logo"/>
nuclear@0 33 -->
nuclear@0 34 <!-- Splash screen -->
nuclear@0 35
nuclear@0 36 <!-- Background running -->
nuclear@0 37 <!-- Warning: changing this value to true may cause unexpected crashes if the
nuclear@0 38 application still try to draw after
nuclear@0 39 "applicationStateChanged(Qt::ApplicationSuspended)"
nuclear@0 40 signal is sent! -->
nuclear@0 41 <meta-data android:name="android.app.background_running" android:value="false"/>
nuclear@0 42 <!-- Background running -->
nuclear@0 43 </activity>
nuclear@0 44 </application>
nuclear@0 45 <uses-sdk android:minSdkVersion="9" android:targetSdkVersion="14"/>
nuclear@0 46 <supports-screens android:largeScreens="true" android:normalScreens="true" android:anyDensity="true" android:smallScreens="true"/>
nuclear@0 47
nuclear@0 48 <!-- The following comment will be replaced upon deployment with default permissions based on the dependencies of the application.
nuclear@0 49 Remove the comment if you do not require these default permissions. -->
nuclear@0 50 <!-- %%INSERT_PERMISSIONS -->
nuclear@0 51
nuclear@0 52 <!-- The following comment will be replaced upon deployment with default features based on the dependencies of the application.
nuclear@0 53 Remove the comment if you do not require these default features. -->
nuclear@0 54 <!-- %%INSERT_FEATURES -->
nuclear@0 55
nuclear@0 56 </manifest>