mirror of
git://code.qt.io/qt/qt5.git
synced 2026-03-05 20:09:53 +08:00
Following Qt 6.11 release 3rd party components update. Task-number: QTBUG-143129 Change-Id: Idfd310197d5345871637a3e4e1858dbd731eeae8 Reviewed-by: Tero Heikkinen <tero.heikkinen@qt.io> Reviewed-by: Elias Toivola <elias.toivola@qt.io>
28 lines
538 B
Groovy
28 lines
538 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_17
|
|
targetCompatibility JavaVersion.VERSION_17
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation libs.core
|
|
implementation libs.appcompat
|
|
implementation libs.material
|
|
}
|