Changes for android build with qt-5.15.8

This commit is contained in:
Bart De Vries 2023-01-20 17:18:25 +01:00
parent db41655c5f
commit 9ccdffa983
2 changed files with 5 additions and 1 deletions

View File

@ -7,7 +7,7 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.kde.kasts"
android:versionName="${versionName}"
android:versionCode="1"
android:versionCode="${versionCode}"
android:installLocation="auto">
<supports-screens android:largeScreens="true" android:normalScreens="true" android:anyDensity="true" android:smallScreens="true"/>

View File

@ -74,6 +74,10 @@ android {
defaultConfig {
minSdkVersion qtMinSdkVersion
targetSdkVersion qtTargetSdkVersion
applicationId "org.kde.kasts"
namespace "org.kde.kasts"
versionCode timestamp
versionName projectVersionFull
manifestPlaceholders = [versionName: projectVersionFull, versionCode: timestamp]
}