mirror of
git://code.qt.io/qt/qt5.git
synced 2026-01-07 23:46:51 +08:00
This task updated the build.gradle of Gradle cache to use SDK 35 for compile and target. Task-number: QTBUG-130285 Task-number: QTBUG-129461 Pick-to: 6.9 6.8 6.5 Change-Id: I076211baf896e65aae3b616a3d6286258c3d0640 Reviewed-by: Rami Potinkara <rami.potinkara@qt.io> Reviewed-by: Assam Boudjelthia <assam.boudjelthia@qt.io>
28 lines
540 B
Groovy
28 lines
540 B
Groovy
plugins {
|
|
alias(libs.plugins.androidApplication)
|
|
}
|
|
|
|
android {
|
|
namespace 'com.example.gradle_project'
|
|
compileSdk 35
|
|
|
|
defaultConfig {
|
|
applicationId "com.example.gradle_project"
|
|
minSdk 28
|
|
targetSdk 35
|
|
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
|
|
}
|