Qt комплекты для android

Qt Documentation

Qt for Android

Qt for Android enables you to run Qt applications on Android devices.

For Qt modules that support android targets see: All Supported Qt Modules.

The following configurations are supported:

Distribution Architecture Compiler Notes
Android 6.0 or later (API level 23 or higher) armv7a , x86 , arm64-v8 , and x86_64 Clang 11.0.5 (NDK r22b) as provided by Google, MinGW 11.2

Here is what you can do with Qt for Android:

  • Run Widget-based and QML applications on a device or an emulator.
  • Support for the Material Style with Qt Quick Controls.
  • Handle Multimedia content.
  • Get sensor readings.
  • Retrieve positioning data using satellite or network information.
  • Connect and exchange data with Bluetooth and NFC-enabled devices.
  • Develop secure applications using OpenSSL library.
  • Create Android Services.
  • Create and deploy Application Package (APK) and Android App Bundle (AAB) packages using Qt Creator.

The following topics provide more details about Qt for Android:

Provides additional information about the licensing of run-time dependencies of Qt for Android

Information particular to building and running Qt applications on Android.

Provides information about Android Services support in Qt.

The technical steps required to deploy a Qt application on Android.

Provides instructions to install and configure your development environment.

Provides instructions to port your existing Qt application to Android.

Provides instructions to prepare your application for publishing.

Provides details on the AndroidManifest.xml configuration

How to configure and build Qt for Android directly from source.

A list of selected Qt Examples for Android.

Instructions on including third-party Android libraries in an application.

В© 2021 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.

Источник

Qt Documentation

Qt for Android

Qt for Android enables you to run Qt 5 applications on Android devices. All Qt modules (essentials and add-ons) are supported except the following:

  • Qt WebEngine
  • Qt Serial Port
  • Qt Virtual Keyboard
  • Platform-specific extras: Qt Mac Extras, Qt Windows Extras, and Qt X11 Extras

The following configurations are supported:

Platform Version Architecture Compiler Build Environment
Android 5.0 or later (that is, API Level 21 and up) armv7a and x86 , arm64-v8 and x86_64 Clang as provided by Google, MinGW 8.1 RHEL 7.x (x86_64), macOS 10.15, Windows 10 (x86_64)

The following list summarizes what you can do with Qt for Android:

  • Run Widget-based and QML applications on a device or an emulator.
  • Support for the Material Style with Qt Quick Controls.
  • Handle Multimedia content in your Qt Quick 2 applications.
  • Get sensor readings.
  • Retrieve positioning data using satellite or network information.
  • Connect and exchange data with Bluetooth and NFC-enabled devices.
  • Integrate Java code into your application using Qt Android Extras.
  • Develop secure applications using OpenSSL library.
  • Create Android Services.
  • Create and deploy Application Package (APK) and Android App Bundle (AAB) packages using Qt Creator.

The following topics provide more details about how to use Qt for Android:

В© 2021 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.

Источник

Радость и грусть разработки на Qt под Android (и не только)

Qt я использую достаточно давно, начиная с версии 4.1. Не сказать, что я «профессионально» его использую, но опыт был разный — и работы с виджетами и эволюции до версии 5.6.

Некоторые примеры проектов:

  • Пульт управления караоке-центром (Android/iOS)
  • Русско-Татарский словарь с кастомной клавиатурой (Android/iOS/WP), тогда ещё даже API для iOS кастомных клавиатур не было
  • Cоциальная сеть с разными примбамбахами под Android (гео, блютуз, чаты, фотки, профили и т.д.)
  • Приложение для быстрого заказа цветов (Android/iOS/WP)

Кроме того, на Qt написано Android приложение 2gis, на котором вы и можете проверить большинство описанного здесь.

Заранее прошу меня поправить, если что-то из описанного здесь имеет ненайденные мною пути решения (буду благодарен, если вы их укажете). Всё нижесказанное относится по большей части к Android.

Проблема №1

Первое и самое главное на сегодняшний момент: если вам нужно много работать с текстом, вводимым пользователем — не выбирайте Qt/Qml!

Крайне не люблю восклицательные знаки, но тут этот знак на своём месте: вам будет крайне сложно реализовать привычное для пользователей целевой платформы работы с полями ввода, а именно:

  1. Выделение текста
  2. Copy & Paste

Суть проблемы: баг работы с элементом редактирования текста висит аж с 2014 года, отмечен как Important и зарегистрирован пользователем с Silver подпиской, но до сих пор не исправлен. В багтрекере описан обходной путь, но если вы хотите использовать не Quick.Controls а чистый Quick с TextEdit и TextInput — извините.

Возможно кто-то скажет, что я слишком многого хочу и TextEdit/TextInput это базовые компоненты, но, извините меня, отсутствие Copy & Paste в базовых компонентах и отсутствие его реализации в Controls не будут вам доставлять проблем до первого замечания Заказчика.

TextEdit не содержит сигналов работы с указателем, типичных для MouseArea, поэтому попытка реализовать показ контекстого меню через долгое нажатие (PressAndHold в терминах Qml) успехом не увенчается. Кроме того, попытка в лоб обернуть поле ввода в MouseArea подходит лишь для ограниченного числа сценариев, т.к. вам придётся долго и упорно реализовывать выставление курсора между буквами и словами.

Поэтому, остаётся либо лезть в исходники и кастомизировать поле ввода, либо смириться.

Проблема №2

Второе и самое любимое заказчиками приложений, содержащий социализацию: Emoji

Суть проблемы: отсутствует нативная обработка любимых всеми смайликов, что в полях ввода, что в тексте — развивайте фантазию и реализуйте сами.

Узнать, что такое на самом деле Emoji и какова нелёгкая судьба их реализации в различных ОС вам поможет статья в Википедии. По факту же, какие есть варианты:

  1. Использовать шрифт с поддержкой символов Emoji. Используйте FontForge для компиляции Roboto с Emoji!
  2. RichText с заменой символов Emoji на цветные png’шки
  3. Глубокая кастомизация поля ввода (можете посмотреть в исходниках телеграмма для десктопа)

Итого: либо оно выглядит некрасиво (вариант 1), либо глючит (вариант 2), либо требует отличных знаний внутренностей Qt (вариант 3 — а если они у вас есть, вам не стоит труда решить большинство проблем).

P.S. Забавная забавность — не выставляйте никаких inputMethodHints у поля ввода, иначе встроенная Android клавиатура с Emoji (iWinn IME) у вас просто не покажется.

Проблема №3

Третье и самое раздражающее: Мерцание и BlackScreen’ы — ваши лучшие друзья.

Это будет сопровождать вас при загрузке приложения, при попытке выставить windowSoftInputMode в AdjustResize, куски чёрного экрана будут тоже периодически появлятся. Поэтому тестируйте, тестируйте и ещё раз тестируйте на реальных девайсах.

Проблема №4

Четвёртое и самое трудноловимое: Шрифты

Суть проблемы: на разных девайсах каждый год всплывает одно и то же, симптомами похожее на закрытый баг. Вы не узнаете об этом, пока счастливый обладатель андроид-девайсана начнёт жаловаться на то, что шрифт плывёт, ломается, невидимый и т.д. В основном, это китайско-корейские девайсы.

Выход здесь только один — брать исходники Qt и патчить под конкретный GPU.

Проблема №5

Пятое и самое спорное: продвинутые контролы Qml — Camera и иже с ними.

Суть проблемы: частые краши, нехватка функциональности и прочие несоответствия стандартного пользовательского опыта нативных приложений. Лечится это всё очень просто — не стесняйтесь добавлять нативные компоненты (Activity в случае Android) в своё приложение. Да, от этого его кроссплатформенность снизится, а количество кода увеличится, но оно того стоит.

Бонус №1

Первое и самое важное: реальная кроссплатформенность.

Суть: после того, как ребята из SQLite портировали своё детище под WP, а скромный автор сего произведения указал на это ребятам из Qt, в порт Qt для WP был добавлен LocalStorage. Это счастье для всех любителей Qml.

Вы реально можете создавать приложения из одних исходников, реально под кучу платформ, при этом кастомизировать их в нужных местах исходя из возможностей и необходимостей платформы. Декларативный UI и js затягивают настолько сильно и позволяют писать настолько лаконичный код, что возвращаться после него на многословную Java + xml, либо спорный Swift + Storyboard’ы нет никакого желания.

Любые анимации, поддержка кастомных шрифтов, svg — это ли не счастье для мобильного разработчика?

Бонус №2

Второе и самое любимое заказчиками: нестандартность.

Суть: фраза от заказчика, приводящая к желанию убивать — «Сделайте как на айфоне». Теперь это не проблема, везде будет выглядеть примерно одинаково. Да, это нарушение гайдлайнов, да, это нехорошо и никогда так не делайте, но заказчик хочет так и у вас три пути — убедить его, уступить ему или отказаться от него, выбирайте сами.

Кроме того, при достаточном желании можно подхачить исходники платформы, так, как нужно именно вам. Так, в нескольких приложениях мы просто насовсем отключали клавиатуру и писали свою на базе Qt Virtual Keyboard, тогда как встроенные приложения таких возможностей не имели.

Бонус №3

Третье и самое любимое мной: скорость разработки.

Суть: в любом состоянии вы можете спроектировать UI практически любой сложности (исключая особенности взаимодействия с ОС, такие как поля ввода, обработка устройства ввода и т.д.). Если вы сам себе заказчик — то перед вами все дороги открыты.

Резюме

Начиная новый проект стоит прежде всего правильно для себя оценить границы развития этого проекта. Если в нём мало работы с нативными возможностями платформы и много нестандарта — используйте Qt. Если же наоборот — подумайте, сможете ли вы его доработать так, как вам нужно.

Спасибо за внимание! Поделитесь своим опытом использования Qt в разработке мобильных приложений в комментариях.

Источник

Qt Documentation

Contents

You can download the Qt 5 sources from the Downloads page. For more information, visit the Getting Started with Qt page.

Qt for Android has some requirements that are described in more detail in Getting Started with Qt for Android.

Installing the Android SDK and NDK on Linux

On Linux, you can install the Android SDK and NDK in one of two ways:

Scripted Installation

For any Debian-based Linux, use the following command:

If you require openjdk, add default-jdk-headless to the command above.

It’s recommended to install the NDK using sdkmanager, with the following commands:

Manual Installation

  1. Download Android Studio from https://developer.android.com/studio/index.html.
  2. Open Android Studio and run the SDK Manager tool from Tools > Android > SDK Manager. If this toolbar isn’t visible, you can enable it from the View menu: select Toolbar.
  3. Download the Android NDK from https://developer.android.com/tools/sdk/ndk/index.html.

Note: As of Qt 5.12, Android NDK r18 is required and gcc toolchains are no longer supported.

Ensure that the NDK supports the API level you’re targeting. To verify, check your path_to_NDK/platforms directory.

Note: As of Qt 5.13, any API level >= 21 is sufficient.

Install a JDK with a version of 1.6 or newer from https://www.oracle.com/technetwork/java/javase/downloads/index.html. Alternatively, you can use OpenJDK.

Building Qt for Android on Linux

  1. If you have a commercially licensed Qt, install your license file. If you’re using a binary installer or the commercial Qt Creator, your licenses are automatically fetched and stored in your local user profile: $XDG_DATA_HOME/Qt/qtlicenses.ini . Alternatively, you can download the respective license file from your Qt Account Web portal and save it to your user profile as $HOME/.qt-license . If you prefer a different location or file name, you need to set the QT_LICENSE_FILE environment variable to the respective file path.
  2. Next, unpack the archive. If you have the qt-everywhere-opensource-src-%VERSION%.tar.gz package, type the following commands at a command line prompt:

This creates the /tmp/qt-everywhere-opensource-src-%VERSION% directory containing the files from the archive. We only support the GNU version of the tar archiving utility; also known as gtar on some systems.

Configure the JAVA_HOME environment variable. You need to set it and add it to your PATH ; preferably at the end of

You may provide the -android-abis parameter to limit the Android ABIs targeted, such as armeabi-v7a, arm64-v8a, x86, or x86_64:

If the parameter is not specified, Qt is built for all supported ABIs.

To build the parts of Qt you have now configured run the following command. nproc is optional, representing the number of parallel jobs your system can do.

If you haven’t used the —prefix configure option, the installation is placed under /usr/local/Qt- . In Debian/Ubuntu, you should prefix the make command with the sudo command.

Installing the Android SDK and NDK on Windows

Note: Currently, it is not possible to use Microsoft’s compilers to build the Windows host tools for Qt Android.

Step 1: Setting up the Development Environment

  1. Install the latest Perl from http://strawberryperl.com. Then, select a destination folder, also known as PERL_ROOT .
  2. Set up the MinGW toolchain by downloading a pre-built Qt package for MinGW, and then add it to your PATH , for example: C:\dev\Qt\Tools\mingw730_64\bin .
  3. Install the latest JDK from https://www.oracle.com/technetwork/java/javase/downloads/index.html. Then, add the to PATH . Alternatively, if you’ve installed Android Studio, you can use the JDK that’s included in your installation’s jre folder.
  4. Install the Android NDK, r18b, from https://developer.android.com/tools/sdk/ndk/index.html. Extract it to .
  5. Install the latest Android SDK (tools only) from http://developer.android.com/sdk/index.html. Run the Android SDK Manager and install the latest version of «SDK Platform», «Google APIs», and «build-tools» in .
  6. Open the cmd.exe window and verify that:
    • where gcc.exe lists .exe first before

.exe.

  • where mingw32-make.exe lists -make.exe first.
  • where javac.exe lists first.
  • Add the following environment variables:

    Depending on which NDK you have downloaded, add its path:

    Building Qt for Android on Windows

    • If you have a commercially licensed Qt, install your license file. If you’re using a binary installer or the commercial Qt Creator, your licenses are automatically fetched and stored in your local user profile: %USERPROFILE%\AppData\Roaming\Qt\qtlicenses.ini . Alternatively, you can download the respective license file from your Qt Account Web portal and save it to your user profile as %USERPROFILE%\.qt-license . If you prefer a different location or file name, you need to set the QT_LICENSE_FILE environment variable to the respective file path.
    • Next, unpack the archive. Uncompress the files into the directory in which you want Qt installed, for example: C:\Qt\%VERSION% . This install path must not contain any spaces or Windows-specific file system characters.
    • Run the following command to configure Qt:

    is optional, representing the number of parallel jobs your system can do.

    Now, to install Qt, run the following command:

    В© 2020 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.

    Источник

    Читайте также:  Нид фор спид андерковер для андроид
  • Оцените статью