That message "Android support is not yet configured" comes from https://code.qt.io/cgit/qt-creator/qt-creator.git/tree/src/plugins/android/androiddevice.cpp?h=20.0#n1296 - that would suggest like @JKSH suggested that the Qt for Android is not yet installed. Whether it should not be even possible to Add -> Android Device when Qt for Android is not yet installed is another way to look at this.
@TP850 Please install Qt for Android first from Qt Installer or Maintenancetool
@Pl45m4
Solution Explorer, right click on the project name -> Qt -> "Upgrade to latest Qt project format version". -- this is no longer an option on the Qt menu!! I have not been able to update Qt_INCLUDEPATH_!
@eramne Is it working for you now? I've got a problem linking FFmpeg with static Qt, which I've logged at https://bugreports.qt.io/browse/QTBUG-115052 but if it's working for you, feel free to mark this as Solved
Hi,
AFAIK, it has nothing to do with macOS.
Usually the -- means that what follows will by passed as is to a process started by the script / command / other that you are invoking.
I finally found a solution which seems to work in my case. I added the Qt.MSWindowsFixedSizeDialogHint window flag, which seems to fix the issue.
So below is the modified code:
ApplicationWindow
{
// common properties
id: awMainForm
width: 602
height: 728
flags: Qt.Window | Qt.FramelessWindowHint | Qt.MSWindowsFixedSizeDialogHint
visible: true
// form content isn't relevant
...
}