simple_mtglife
diff 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 diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/android/AndroidManifest.xml Fri Jan 23 15:24:27 2015 +0200 1.3 @@ -0,0 +1,56 @@ 1.4 +<?xml version="1.0"?> 1.5 +<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"> 1.6 + <application android:hardwareAccelerated="true" android:name="org.qtproject.qt5.android.bindings.QtApplication" android:label="-- %%INSERT_APP_NAME%% --"> 1.7 + <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"> 1.8 + <intent-filter> 1.9 + <action android:name="android.intent.action.MAIN"/> 1.10 + <category android:name="android.intent.category.LAUNCHER"/> 1.11 + </intent-filter> 1.12 + <meta-data android:name="android.app.lib_name" android:value="-- %%INSERT_APP_LIB_NAME%% --"/> 1.13 + <meta-data android:name="android.app.qt_sources_resource_id" android:resource="@array/qt_sources"/> 1.14 + <meta-data android:name="android.app.repository" android:value="default"/> 1.15 + <meta-data android:name="android.app.qt_libs_resource_id" android:resource="@array/qt_libs"/> 1.16 + <meta-data android:name="android.app.bundled_libs_resource_id" android:resource="@array/bundled_libs"/> 1.17 + <!-- Deploy Qt libs as part of package --> 1.18 + <meta-data android:name="android.app.bundle_local_qt_libs" android:value="-- %%BUNDLE_LOCAL_QT_LIBS%% --"/> 1.19 + <meta-data android:name="android.app.bundled_in_lib_resource_id" android:resource="@array/bundled_in_lib"/> 1.20 + <meta-data android:name="android.app.bundled_in_assets_resource_id" android:resource="@array/bundled_in_assets"/> 1.21 + <!-- Run with local libs --> 1.22 + <meta-data android:name="android.app.use_local_qt_libs" android:value="-- %%USE_LOCAL_QT_LIBS%% --"/> 1.23 + <meta-data android:name="android.app.libs_prefix" android:value="/data/local/tmp/qt/"/> 1.24 + <meta-data android:name="android.app.load_local_libs" android:value="-- %%INSERT_LOCAL_LIBS%% --"/> 1.25 + <meta-data android:name="android.app.load_local_jars" android:value="-- %%INSERT_LOCAL_JARS%% --"/> 1.26 + <meta-data android:name="android.app.static_init_classes" android:value="-- %%INSERT_INIT_CLASSES%% --"/> 1.27 + <!-- Messages maps --> 1.28 + <meta-data android:value="@string/ministro_not_found_msg" android:name="android.app.ministro_not_found_msg"/> 1.29 + <meta-data android:value="@string/ministro_needed_msg" android:name="android.app.ministro_needed_msg"/> 1.30 + <meta-data android:value="@string/fatal_error_msg" android:name="android.app.fatal_error_msg"/> 1.31 + <!-- Messages maps --> 1.32 + 1.33 + <!-- Splash screen --> 1.34 + <!-- 1.35 + <meta-data android:name="android.app.splash_screen_drawable" android:resource="@drawable/logo"/> 1.36 + --> 1.37 + <!-- Splash screen --> 1.38 + 1.39 + <!-- Background running --> 1.40 + <!-- Warning: changing this value to true may cause unexpected crashes if the 1.41 + application still try to draw after 1.42 + "applicationStateChanged(Qt::ApplicationSuspended)" 1.43 + signal is sent! --> 1.44 + <meta-data android:name="android.app.background_running" android:value="false"/> 1.45 + <!-- Background running --> 1.46 + </activity> 1.47 + </application> 1.48 + <uses-sdk android:minSdkVersion="9" android:targetSdkVersion="14"/> 1.49 + <supports-screens android:largeScreens="true" android:normalScreens="true" android:anyDensity="true" android:smallScreens="true"/> 1.50 + 1.51 + <!-- The following comment will be replaced upon deployment with default permissions based on the dependencies of the application. 1.52 + Remove the comment if you do not require these default permissions. --> 1.53 + <!-- %%INSERT_PERMISSIONS --> 1.54 + 1.55 + <!-- The following comment will be replaced upon deployment with default features based on the dependencies of the application. 1.56 + Remove the comment if you do not require these default features. --> 1.57 + <!-- %%INSERT_FEATURES --> 1.58 + 1.59 +</manifest>