You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/source/quickstart.rst
+14-1Lines changed: 14 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,7 @@ Concepts
26
26
27
27
- **bootstrap:** A bootstrap is the app backend that will start your
28
28
application. The default for graphical applications is SDL2.
29
-
You can also use e.g. the webview for web apps, or service_only for
29
+
You can also use e.g. the webview for web apps, or service_only/service_library for
30
30
background services. Different bootstraps have different additional
31
31
build options.
32
32
@@ -213,6 +213,19 @@ You can also replace flask with another web framework.
213
213
Replace ``--port=5000`` with the port on which your app will serve a
214
214
website. The default for Flask is 5000.
215
215
216
+
217
+
Build a Service library archive
218
+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
219
+
220
+
To build an android archive (.aar), containing an android service , you need a name, version, package identifier, explicitly use the
221
+
service_library bootstrap, and declare service entry point (See :ref:`services <arbitrary_scripts_services>` for more options), as well as the requirements and arch(s)::
0 commit comments