You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
80 lines
1.9 KiB
80 lines
1.9 KiB
4 months ago
|
buildscript {
|
||
|
repositories {
|
||
|
google()
|
||
2 months ago
|
mavenCentral()
|
||
4 months ago
|
jcenter()
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
2 months ago
|
classpath 'com.android.tools.build:gradle:4.1.3'
|
||
4 months ago
|
}
|
||
|
}
|
||
|
|
||
|
repositories {
|
||
|
google()
|
||
2 months ago
|
mavenCentral()
|
||
4 months ago
|
jcenter()
|
||
|
}
|
||
|
|
||
|
apply plugin: 'com.android.application'
|
||
|
|
||
|
dependencies {
|
||
|
implementation fileTree(dir: 'libs', include: ['*.jar', '*.aar'])
|
||
|
}
|
||
|
|
||
|
android {
|
||
|
/*******************************************************
|
||
|
* The following variables:
|
||
|
* - androidBuildToolsVersion,
|
||
|
* - androidCompileSdkVersion
|
||
|
* - qt5AndroidDir - holds the path to qt android files
|
||
|
* needed to build any Qt application
|
||
|
* on Android.
|
||
|
*
|
||
|
* are defined in gradle.properties file. This file is
|
||
|
* updated by QtCreator and androiddeployqt tools.
|
||
|
* Changing them manually might break the compilation!
|
||
|
*******************************************************/
|
||
|
|
||
|
compileSdkVersion androidCompileSdkVersion.toInteger()
|
||
|
|
||
2 months ago
|
buildToolsVersion '30.0.3'
|
||
4 months ago
|
|
||
|
sourceSets {
|
||
|
main {
|
||
|
manifest.srcFile 'AndroidManifest.xml'
|
||
|
java.srcDirs = [qt5AndroidDir + '/src', 'src', 'java']
|
||
|
aidl.srcDirs = [qt5AndroidDir + '/src', 'src', 'aidl']
|
||
|
res.srcDirs = [qt5AndroidDir + '/res', 'res']
|
||
2 months ago
|
resources.srcDirs = ['resources']
|
||
4 months ago
|
renderscript.srcDirs = ['src']
|
||
|
assets.srcDirs = ['assets']
|
||
|
jniLibs.srcDirs = ['libs']
|
||
|
}
|
||
|
}
|
||
|
|
||
2 months ago
|
tasks.withType(JavaCompile) {
|
||
|
options.incremental = true
|
||
|
}
|
||
|
|
||
|
compileOptions {
|
||
|
sourceCompatibility JavaVersion.VERSION_1_8
|
||
|
targetCompatibility JavaVersion.VERSION_1_8
|
||
|
}
|
||
|
|
||
4 months ago
|
lintOptions {
|
||
|
abortOnError false
|
||
|
}
|
||
2 months ago
|
|
||
|
// Do not compress Qt binary resources file
|
||
|
aaptOptions {
|
||
|
noCompress 'rcc'
|
||
|
}
|
||
|
|
||
|
defaultConfig {
|
||
|
resConfig "en"
|
||
|
minSdkVersion = qtMinSdkVersion
|
||
|
targetSdkVersion = qtTargetSdkVersion
|
||
|
}
|
||
4 months ago
|
}
|