mirror of
git://code.qt.io/qt/qt5.git
synced 2026-01-09 00:16:55 +08:00
This patch updates build.gradle to set compile- and targetSdkVersion to 36. Task-number: QTBUG-138552 Task-number: QTBUG-138549 Pick-to: 6.11 6.10 6.8 Change-Id: I44be99956f39e7bc23e8c5a3d15289dfdd574921 Reviewed-by: Nicholas Bennett <nicholas.bennett@qt.io>
28 lines
540 B
Groovy
28 lines
540 B
Groovy
plugins {
|
|
alias(libs.plugins.androidApplication)
|
|
}
|
|
|
|
android {
|
|
namespace 'com.example.gradle_project'
|
|
compileSdk 36
|
|
|
|
defaultConfig {
|
|
applicationId "com.example.gradle_project"
|
|
minSdk 28
|
|
targetSdk 36
|
|
versionCode 1
|
|
versionName "1.0"
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation libs.core
|
|
implementation libs.appcompat
|
|
implementation libs.material
|
|
}
|