56 lines
1.3 KiB
Groovy
56 lines
1.3 KiB
Groovy
apply from: 'buildsystem/dependencies.gradle'
|
|
apply plugin: "com.vanniktech.android.junit.jacoco"
|
|
|
|
buildscript {
|
|
ext.kotlin_version = '1.6.21'
|
|
repositories {
|
|
mavenCentral()
|
|
google()
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:7.1.3'
|
|
classpath 'org.greenrobot:greendao-gradle-plugin:3.3.0'
|
|
classpath 'com.vanniktech:gradle-android-junit-jacoco-plugin:0.16.0'
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
classpath "de.mannodermaus.gradle.plugins:android-junit5:1.7.1.1"
|
|
}
|
|
}
|
|
|
|
def getVersionCode = { ->
|
|
try {
|
|
def branchName = new ByteArrayOutputStream()
|
|
exec {
|
|
commandLine 'git', 'rev-parse', '--abbrev-ref', 'HEAD'
|
|
standardOutput = branchName
|
|
}
|
|
def appBuild = new ByteArrayOutputStream()
|
|
exec {
|
|
commandLine 'git', 'rev-list', '--count', branchName.toString().trim()
|
|
standardOutput = appBuild
|
|
}
|
|
return Integer.parseInt(appBuild.toString().trim()) + 1958 // adding 1958 for legacy reasons
|
|
}
|
|
catch (ignored) {
|
|
return -1
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
ext {
|
|
androidApplicationId = 'org.cryptomator'
|
|
androidVersionCode = getVersionCode()
|
|
androidVersionName = '1.7.5'
|
|
}
|
|
repositories {
|
|
mavenCentral()
|
|
maven {
|
|
url "https://maven.google.com"
|
|
}
|
|
google()
|
|
}
|
|
}
|
|
|
|
task clean(type: Delete) {
|
|
delete rootProject.buildDir
|
|
}
|