Am 15.07.21 um 12:44 schrieb Alexander Dyagilev:

Hello,

Why can't I choose target sdk versions here?

It's a new project. All I did is created templates using the appropriate Qt Creator button.

this is because Min and Target SDK isn't part of Android Manifest anymore - it's now part of Gradle.properties

you have to set this in .pro, per ex.:

ANDROID_MIN_SDK_VERSION="21"

ANDROID_TARGET_SDK_VERSION="29"

then it will be auto-magically set into Gradle.properties - you can verify this from your shadow build

ekke

_______________________________________________
Interest mailing list
Interest@qt-project.org
https://lists.qt-project.org/listinfo/interest

Reply via email to