mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
94136db4e1
Builds started to fail because v2.2.2 (about 18 months old) couldn't be found anymore. That issue seems to have been fixed, but it was a good reminder not to get completely disconnected from upstream here. This switches things to the currently latest version of the Android USB library (which coincidentally will also provide support for additional USB-serial chipset - not that I think that any dive computers will benefit from that). Some of the interfaces changed in the upstream Java library and our code had to be adjusted to accomodate this. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
73 lines
2.1 KiB
Groovy
73 lines
2.1 KiB
Groovy
/*******************************************************
|
|
* SPDX-License-Identifier: GPL-2.0
|
|
* Subsurface-Mobile own Gradle build spec. Derived from
|
|
* the one supplied by Qt.
|
|
*******************************************************/
|
|
buildscript {
|
|
repositories {
|
|
jcenter()
|
|
maven { url "https://dl.bintray.com/android/android-tools/" }
|
|
google()
|
|
}
|
|
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:3.2.1'
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
jcenter()
|
|
maven { url "https://dl.bintray.com/android/android-tools/" }
|
|
maven { url 'https://jitpack.io' }
|
|
google()
|
|
}
|
|
}
|
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
dependencies {
|
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
|
implementation 'com.github.mik3y:usb-serial-for-android:v3.4.3'
|
|
}
|
|
|
|
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()
|
|
|
|
buildToolsVersion androidBuildToolsVersion
|
|
|
|
sourceSets {
|
|
main {
|
|
manifest.srcFile 'AndroidManifest.xml'
|
|
java.srcDirs = [qt5AndroidDir + '/src', 'src', 'java']
|
|
aidl.srcDirs = [qt5AndroidDir + '/src', 'src', 'aidl']
|
|
res.srcDirs = [qt5AndroidDir + '/res', 'res']
|
|
resources.srcDirs = ['src']
|
|
renderscript.srcDirs = ['src']
|
|
assets.srcDirs = ['assets']
|
|
jniLibs.srcDirs = ['libs']
|
|
}
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
lintOptions {
|
|
abortOnError false
|
|
}
|
|
}
|