selfprivacy.org.app/android/build.gradle

45 lines
938 B
Groovy
Raw Normal View History

2020-11-29 22:07:46 +02:00
buildscript {
2023-12-01 21:40:48 +02:00
ext.kotlin_version = '1.9.21'
ext.getVersionCode = { ->
try {
def stdout = new ByteArrayOutputStream()
exec {
commandLine 'git', 'rev-list', '--first-parent', '--count', 'HEAD'
standardOutput = stdout
}
return Integer.parseInt(stdout.toString().trim())
}
catch (ignored) {
return -1
}
}
2020-11-29 22:07:46 +02:00
repositories {
google()
jcenter()
}
dependencies {
2022-05-16 23:30:14 +03:00
classpath 'com.android.tools.build:gradle:7.1.2'
2020-11-29 22:07:46 +02:00
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
allprojects {
repositories {
google()
jcenter()
}
}
rootProject.buildDir = '../build'
subprojects {
project.buildDir = "${rootProject.buildDir}/${project.name}"
}
subprojects {
project.evaluationDependsOn(':app')
}
tasks.register("clean", Delete) {
2020-11-29 22:07:46 +02:00
delete rootProject.buildDir
}