fork download
  1. <?xml version="1.0"?>
  2. <manifest package="com.amr.test" xmlns:android="http://s...content-available-to-author-only...d.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|layoutDirection|locale|fontScale|keyboard|keyboardHidden|navigation"
  5. android:name="org.qtproject.qt5.android.bindings.QtActivity"
  6. android:label="MyAndroidAct"
  7. android:screenOrientation="unspecified"
  8. android:launchMode="singleTop">
  9. <intent-filter>
  10. <action android:name="android.intent.action.MAIN"/>
  11. <category android:name="android.intent.category.LAUNCHER"/>
  12. </intent-filter>
  13.  
  14. <!-- Application arguments -->
  15. <!-- meta-data android:name="android.app.arguments" android:value="arg1 arg2 arg3"/ -->
  16. <!-- Application arguments -->
  17.  
  18. <meta-data android:name="android.app.lib_name" android:value="-- %%INSERT_APP_LIB_NAME%% --"/>
  19. <meta-data android:name="android.app.qt_sources_resource_id" android:resource="@array/qt_sources"/>
  20. <meta-data android:name="android.app.repository" android:value="default"/>
  21. <meta-data android:name="android.app.qt_libs_resource_id" android:resource="@array/qt_libs"/>
  22. <meta-data android:name="android.app.bundled_libs_resource_id" android:resource="@array/bundled_libs"/>
  23. <!-- Deploy Qt libs as part of package -->
  24. <meta-data android:name="android.app.bundle_local_qt_libs" android:value="-- %%BUNDLE_LOCAL_QT_LIBS%% --"/>
  25. <meta-data android:name="android.app.bundled_in_lib_resource_id" android:resource="@array/bundled_in_lib"/>
  26. <meta-data android:name="android.app.bundled_in_assets_resource_id" android:resource="@array/bundled_in_assets"/>
  27. <!-- Run with local libs -->
  28. <meta-data android:name="android.app.use_local_qt_libs" android:value="-- %%USE_LOCAL_QT_LIBS%% --"/>
  29. <meta-data android:name="android.app.libs_prefix" android:value="/data/local/tmp/qt/"/>
  30. <meta-data android:name="android.app.load_local_libs" android:value="-- %%INSERT_LOCAL_LIBS%% --"/>
  31. <meta-data android:name="android.app.load_local_jars" android:value="-- %%INSERT_LOCAL_JARS%% --"/>
  32. <meta-data android:name="android.app.static_init_classes" android:value="-- %%INSERT_INIT_CLASSES%% --"/>
  33. <!-- Messages maps -->
  34. <meta-data android:value="@string/ministro_not_found_msg" android:name="android.app.ministro_not_found_msg"/>
  35. <meta-data android:value="@string/ministro_needed_msg" android:name="android.app.ministro_needed_msg"/>
  36. <meta-data android:value="@string/fatal_error_msg" android:name="android.app.fatal_error_msg"/>
  37. <!-- Messages maps -->
  38.  
  39. <!-- Splash screen -->
  40. <!-- meta-data android:name="android.app.splash_screen_drawable" android:resource="@drawable/logo"/ -->
  41. <!-- meta-data android:name="android.app.splash_screen_sticky" android:value="true"/ -->
  42. <!-- Splash screen -->
  43.  
  44. <!-- Background running -->
  45. <!-- Warning: changing this value to true may cause unexpected crashes if the
  46. application still try to draw after
  47. "applicationStateChanged(Qt::ApplicationSuspended)"
  48. signal is sent! -->
  49. <meta-data android:name="android.app.background_running" android:value="false"/>
  50. <!-- Background running -->
  51.  
  52. <!-- auto screen scale factor -->
  53. <meta-data android:name="android.app.auto_screen_scale_factor" android:value="false"/>
  54. <!-- auto screen scale factor -->
  55.  
  56. <!-- extract android style -->
  57. <!-- available android:values :
  58. * full - useful QWidget & Quick Controls 1 apps
  59. * minimal - useful for Quick Controls 2 apps, it is much faster than "full"
  60. * none - useful for apps that don't use any of the above Qt modules
  61. -->
  62. <meta-data android:name="android.app.extract_android_style" android:value="full"/>
  63. <!-- extract android style -->
  64. </activity>
  65.  
  66. <!-- For adding service(s) please check: https://w...content-available-to-author-only...t.io/AndroidServices -->
  67.  
  68. <service android:process=":qt" android:name="com.amr.test.MyService">
  69. <!-- android:process=":qt" is needed to force the service to run on a separate process than the Activity -->
  70.  
  71. <!-- Application arguments -->
  72. <!-- meta-data android:name="android.app.arguments" android:value="-service"/ -->
  73. <!-- Application arguments -->
  74.  
  75. <!-- If you are using the same application (.so file) for activity and also for service, then you
  76. need to use *android.app.arguments* to pass some arguments to your service in order to know which
  77. one is which.
  78. -->
  79.  
  80. <!-- Application to launch -->
  81. <meta-data android:name="android.app.lib_name" android:value="-- %%INSERT_APP_LIB_NAME%% --"/>
  82. <!-- Application to launch -->
  83.  
  84. <!-- Ministro -->
  85. <meta-data android:name="android.app.qt_sources_resource_id" android:resource="@array/qt_sources"/>
  86. <meta-data android:name="android.app.repository" android:value="default"/>
  87. <meta-data android:name="android.app.qt_libs_resource_id" android:resource="@array/qt_libs"/>
  88. <meta-data android:name="android.app.bundled_libs_resource_id" android:resource="@array/bundled_libs"/>
  89. <!-- Ministro -->
  90.  
  91. <!-- Deploy Qt libs as part of package -->
  92. <meta-data android:name="android.app.bundle_local_qt_libs" android:value="-- %%BUNDLE_LOCAL_QT_LIBS%% --"/>
  93. <meta-data android:name="android.app.bundled_in_lib_resource_id" android:resource="@array/bundled_in_lib"/>
  94. <meta-data android:name="android.app.bundled_in_assets_resource_id" android:resource="@array/bundled_in_assets"/>
  95. <!-- Deploy Qt libs as part of package -->
  96.  
  97. <!-- Run with local libs -->
  98. <meta-data android:name="android.app.use_local_qt_libs" android:value="-- %%USE_LOCAL_QT_LIBS%% --"/>
  99. <meta-data android:name="android.app.libs_prefix" android:value="/data/local/tmp/qt/"/>
  100. <meta-data android:name="android.app.load_local_libs" android:value="-- %%INSERT_LOCAL_LIBS%% --"/>
  101. <meta-data android:name="android.app.load_local_jars" android:value="-- %%INSERT_LOCAL_JARS%% --"/>
  102. <meta-data android:name="android.app.static_init_classes" android:value="-- %%INSERT_INIT_CLASSES%% --"/>
  103. <!-- Run with local libs -->
  104.  
  105. <!-- Messages maps -->
  106. <meta-data android:value="@string/ministro_not_found_msg" android:name="android.app.ministro_not_found_msg"/>
  107. <meta-data android:value="@string/ministro_needed_msg" android:name="android.app.ministro_needed_msg"/>
  108. <meta-data android:value="@string/fatal_error_msg" android:name="android.app.fatal_error_msg"/>
  109. <!-- Messages maps -->
  110.  
  111.  
  112. <!-- Background running -->
  113. <meta-data android:name="android.app.background_running" android:value="true"/>
  114. <!-- Background running -->
  115. </service>
  116.  
  117. </application>
  118.  
  119. <uses-sdk android:minSdkVersion="16" android:targetSdkVersion="16"/>
  120. <supports-screens android:largeScreens="true" android:normalScreens="true" android:anyDensity="true" android:smallScreens="true"/>
  121.  
  122. <!-- The following comment will be replaced upon deployment with default permissions based on the dependencies of the application.
  123. Remove the comment if you do not require these default permissions. -->
  124. <!-- %%INSERT_PERMISSIONS -->
  125.  
  126. <!-- The following comment will be replaced upon deployment with default features based on the dependencies of the application.
  127. Remove the comment if you do not require these default features. -->
  128. <!-- %%INSERT_FEATURES -->
  129.  
  130. </manifest>
  131.  
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
Main.java:1: error: class, interface, or enum expected
<?xml version="1.0"?>
^
Main.java:1: error: class, interface, or enum expected
<?xml version="1.0"?>
 ^
Main.java:1: error: class, interface, or enum expected
<?xml version="1.0"?>
  ^
Main.java:60: error: unclosed character literal
                * none - useful for apps that don't use any of the above Qt modules
                                                 ^
4 errors
stdout
Standard output is empty