Hi,
I recommend creating a new Qt Project for Android, and then studying the files that are auto-generated for you. After that,
Back up your old project
Copy the files from the new project into your old project
Merge the new .pro file with your old .pro file
Merge the new main() function into your old main() function — replace QApplication (this is for QWidgets) with QGuiApplication (this is for general GUIs)
Reimplement your UI in the sample QML file
↧