2020-11-29 20:07:46 +00:00
|
|
|
buildscript {
|
2022-05-16 20:30:14 +00:00
|
|
|
ext.kotlin_version = '1.6.10'
|
2022-09-12 11:41:22 +00:00
|
|
|
ext.getVersionCode = { ->
|
|
|
|
try {
|
|
|
|
def stdout = new ByteArrayOutputStream()
|
|
|
|
exec {
|
|
|
|
commandLine 'git', 'rev-list', '--first-parent', '--count', 'origin/master'
|
|
|
|
standardOutput = stdout
|
|
|
|
}
|
|
|
|
return Integer.parseInt(stdout.toString().trim())
|
|
|
|
}
|
|
|
|
catch (ignored) {
|
|
|
|
return -1
|
|
|
|
}
|
|
|
|
}
|
2020-11-29 20:07:46 +00:00
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
jcenter()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2022-05-16 20:30:14 +00:00
|
|
|
classpath 'com.android.tools.build:gradle:7.1.2'
|
2020-11-29 20:07:46 +00: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')
|
|
|
|
}
|
|
|
|
|
|
|
|
task clean(type: Delete) {
|
|
|
|
delete rootProject.buildDir
|
|
|
|
}
|