Qt With Android 5.9.0 Installation Erorr
Solution 1:
The Problem here is that Google removed/moved a bunch of tools from Version 26 of the android SDK! This happend after the release of Qt 5.9.0, and thus the SDK 26 cannot be used with Qt 5.9.0
You can now either use the SDK Version 25, or update your Qt to 5.9.1. This should at least fix the build problems.
If you decide to update Qt, this will however still not solve the AVD problem. As of SDK 26, the AVD graphical tool is no longer part of the SDK, only a command line tool (as stated by the message you see). The graphical variant is available in Android Studio only. (Don't ask why, just google being google...)
You can still use that command line tool though. Go to <android-sdk-location>/tools/bin
and type avdmanager --help
to see how to use the tool to create virtual devices.
EDIT: With the recent QtCreator, a graphical SDK and AVD manager have been embedded into QtCreator itself, providing a useful alternative to the old ones.
Post a Comment for "Qt With Android 5.9.0 Installation Erorr"