AndroidManifest.xml 5.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <?xml version="1.0"?>
  2. <manifest package="org.ded.nooLight" 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="nooLight" android:icon="@drawable/icon">
  4. <activity android:configChanges="orientation|uiMode|screenLayout|screenSize|smallestScreenSize|layoutDirection|locale|fontScale|keyboard|keyboardHidden|navigation" android:name="org.qtproject.qt5.android.bindings.QtActivity" android:label="-- %%INSERT_APP_NAME%% --" android:screenOrientation="unspecified" 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. <!-- Application arguments -->
  10. <!-- meta-data android:name="android.app.arguments" android:value="arg1 arg2 arg3"/ -->
  11. <!-- Application arguments -->
  12. <meta-data android:name="android.app.lib_name" android:value="-- %%INSERT_APP_LIB_NAME%% --"/>
  13. <meta-data android:name="android.app.qt_sources_resource_id" android:resource="@array/qt_sources"/>
  14. <meta-data android:name="android.app.repository" android:value="default"/>
  15. <meta-data android:name="android.app.qt_libs_resource_id" android:resource="@array/qt_libs"/>
  16. <meta-data android:name="android.app.bundled_libs_resource_id" android:resource="@array/bundled_libs"/>
  17. <!-- Deploy Qt libs as part of package -->
  18. <meta-data android:name="android.app.bundle_local_qt_libs" android:value="-- %%BUNDLE_LOCAL_QT_LIBS%% --"/>
  19. <meta-data android:name="android.app.bundled_in_lib_resource_id" android:resource="@array/bundled_in_lib"/>
  20. <meta-data android:name="android.app.bundled_in_assets_resource_id" android:resource="@array/bundled_in_assets"/>
  21. <!-- Run with local libs -->
  22. <meta-data android:name="android.app.use_local_qt_libs" android:value="-- %%USE_LOCAL_QT_LIBS%% --"/>
  23. <meta-data android:name="android.app.libs_prefix" android:value="/data/local/tmp/qt/"/>
  24. <meta-data android:name="android.app.load_local_libs" android:value="-- %%INSERT_LOCAL_LIBS%% --"/>
  25. <meta-data android:name="android.app.load_local_jars" android:value="-- %%INSERT_LOCAL_JARS%% --"/>
  26. <meta-data android:name="android.app.static_init_classes" android:value="-- %%INSERT_INIT_CLASSES%% --"/>
  27. <!-- Messages maps -->
  28. <meta-data android:value="@string/ministro_not_found_msg" android:name="android.app.ministro_not_found_msg"/>
  29. <meta-data android:value="@string/ministro_needed_msg" android:name="android.app.ministro_needed_msg"/>
  30. <meta-data android:value="@string/fatal_error_msg" android:name="android.app.fatal_error_msg"/>
  31. <!-- Messages maps -->
  32. <!-- Splash screen -->
  33. <!-- meta-data android:name="android.app.splash_screen_drawable" android:resource="@drawable/logo"/ -->
  34. <!-- meta-data android:name="android.app.splash_screen_sticky" android:value="true"/ -->
  35. <!-- 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. <!-- auto screen scale factor -->
  44. <meta-data android:name="android.app.auto_screen_scale_factor" android:value="false"/>
  45. <!-- auto screen scale factor -->
  46. <!-- extract android style -->
  47. <!-- available android:values :
  48. * full - useful QWidget & Quick Controls 1 apps
  49. * minimal - useful for Quick Controls 2 apps, it is much faster than "full"
  50. * none - useful for apps that don't use any of the above Qt modules
  51. -->
  52. <meta-data android:name="android.app.extract_android_style" android:value="full"/>
  53. <!-- extract android style -->
  54. </activity>
  55. <!-- For adding service(s) please check: https://wiki.qt.io/AndroidServices -->
  56. </application>
  57. <uses-sdk android:minSdkVersion="16" android:targetSdkVersion="16"/>
  58. <supports-screens android:largeScreens="true" android:normalScreens="true" android:anyDensity="true" android:smallScreens="true"/>
  59. <!-- The following comment will be replaced upon deployment with default permissions based on the dependencies of the application.
  60. Remove the comment if you do not require these default permissions. -->
  61. <!-- %%INSERT_PERMISSIONS -->
  62. <!-- The following comment will be replaced upon deployment with default features based on the dependencies of the application.
  63. Remove the comment if you do not require these default features. -->
  64. <!-- %%INSERT_FEATURES -->
  65. </manifest>