summaryrefslogtreecommitdiffstats
path: root/src/tools/androiddeployqt/doc/src/androiddeployqt.qdoc
blob: b94d7f5c04e47be1e64f2080d1306636f2ca6818 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
// Copyright (C) 2023 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GFDL-1.3-no-invariants-only

/*!
    \page android-deploy-qt-tool.html
    \brief An overview of the androiddeployqt tool and how to use it.
    \title The androiddeployqt Tool

    \target androiddeployqt
    Building an Android package involves many steps, so Qt comes with a tool which
    handles the work for you. The steps handled by the androiddeployqt
    tool are described in \l{Deploying an Application on Android}.

    \section1 Prerequisites Before Running androiddeployqt

    Before running the tool manually, you need to configure your project with
    \c CMake or \c qmake to generate \c Makefiles and a \c JSON file (i.e.
    \c{android-<target_name>-deployment-settings.json}) containing important settings
    used by \c androiddeployqt.

    \note It is not recommended to modify the androiddeployqt JSON file.

    To prepare the environment for androiddeployqt, configure your project in
    a separate directory than your source directory. For more information on
    configuring your project, see \l {Building Qt for Android Projects from Command Line}.

    \section1 Command Line Arguments

    The only required command line arguments when running the tool are
    \c {--input} and \c {--output}. Other command line arguments are optional but
    useful. The list below is available by passing the \c {--help} argument to
    androiddeployqt.

    \quotefromfile main.cpp
    \skipto Syntax: androiddeployqt --output <destination> [options]
    \printuntil --help: Displays this information.

    With a \c project_name, to build the application package with \c androiddeployqt
    without deploying it the device, run the following:

    \badcode
    androiddeployqt --input <build_dir>/android-project_name-deployment-settings.json \
                    --output <build_dir>/android-build
    \endcode

    To build and deploy the package to the device:

    \badcode
    androiddeployqt --input <build_dir>/android-project_name-deployment-settings.json \
                    --output <build_dir>/android-build --install --device <device_serial_id>
    \endcode

    \section1 Dependencies Detection

    Qt comes with a number of plugins which are loaded at run-time when they are
    needed. These can handle anything from connecting to SQL databases to loading
    specific image formats. Detecting plugin dependencies is impossible as the
    plugins are loaded at run-time, but androiddeployqt tries to guess such
    dependencies based on the Qt dependencies of your application. If the plugin
    has any Qt dependencies which are not also dependencies of your application,
    it will not be included by default. For instance, in order to ensure that
    the SVG image format plugin is included, you will need to add \l {Qt SVG}
    module to your project for it to become a dependency of your application:

    \badcode
    find_package(Qt6 REQUIRED COMPONENTS Svg)
    ...
    target_link_libraries(target_name PRIVATE Qt6::Svg)
    \endcode

    If you are wondering why a particular plugin is not included automatically,
    you can run androiddeployqt with the \c{--verbose} option to get the list of
    missing dependencies for each excluded plugin. You can achieve the same in
    Qt Creator by ticking the \uicontrol {Verbose output} check box in the
    \uicontrol {Projects} > \uicontrol {Build Steps} > \uicontrol {Build Android APK} >
    \uicontrol {Advanced Actions}.

    It's also possible to manually specify the dependencies of your application.
    For more information, see \l {QT_ANDROID_DEPLOYMENT_DEPENDENCIES} CMake variable.

    \note androiddeployqt scans the QML files of the project to collect the QML imports.
    However, if you are loading QML code as a QString from C++ at runtime, that might
    not work properly because androiddeployqt won't be aware of it at deploy time.
    To remedy that, you can add a dummy QML file that imports such QML modules that
    are referenced at runtime.

    \section1 Deployment in Qt Creator

    Qt Creator uses \c androiddeployqt under the hood, and provides easy
    and intuitive user interfaces to specify various options. For more information,
    see \l{Qt Creator: Deploying Applications to Android Devices}.

    For more information about customizing and deploying a Qt for Android app,
    see \l {Deploying an Application on Android}.
*/