C
Qt Android Apps Utils
Getting Started
To include the definitions of the module's classes, use the following directive for C++:
#include <QtAndroidAppsUtils>
To use the QML types in Qt Android Apps Utils, add the following import statement to your .qml file:
import QtAndroidAutomotive.QtAndroidAppsUtils 1.0
Using the Module
Using a Qt module requires linking against the module library, either directly or through other dependencies. CMake and qmake build tools are supported.
Building with CMake
Use the find_package() and target_link_libraries() commands to locate and link the needed module component from the Qt6 package:
find_package(Qt6 COMPONENTS AndroidAppsUtils) target_link_libraries(mytarget PUBLIC Qt::AndroidAppsUtils)
Building with qmake
Add androidappsutils
to the QT
variable:
QT += androidappsutils
API Reference
Links to the API reference materials:
Examples
Available under certain Qt licenses.
Find out more.