-
Notifications
You must be signed in to change notification settings - Fork 100
/
build.gradle
70 lines (59 loc) · 1.74 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
import org.gradle.internal.jvm.Jvm
buildscript {
ext.kotlin_version = '2.1.0'
repositories {
mavenCentral()
google()
maven { url "https://plugins.gradle.org/m2/" }
}
dependencies {
classpath 'com.android.tools.build:gradle:8.7.3'
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "org.jlleitschuh.gradle:ktlint-gradle:12.1.2"
}
}
plugins {
id 'com.google.devtools.ksp' version '2.1.0-1.0.29' apply false
}
println "Gradle uses Java ${Jvm.current()}"
ext {
compileSdkVersion = 35
targetSdk = 35
room_version = "2.6.1"
logcatVersion = "3.3.1"
}
subprojects {
apply plugin: "org.jlleitschuh.gradle.ktlint"
// Optionally configure plugin
ktlint {
debug = false
}
}
allprojects {
repositories {
google()
mavenCentral()
maven { url "https://repo.eclipse.org/content/repositories/paho-releases/" }
maven { url 'https://jitpack.io' }
}
}
@SuppressWarnings('unused')
static def getTag() {
def tagVersion = "$System.env.VERSION"
if (tagVersion.toString().equals("null")) {
// with local un-commited changes a -DIRTY is added
def processChanges = "git diff-index --name-only HEAD --".execute()
def dirty = ""
if (!processChanges.text.toString().trim().isEmpty())
dirty = "-DIRTY"
def process = "git describe --tags".execute()
tagVersion = process.text.toString().trim() + dirty
}
return tagVersion
}
@SuppressWarnings('unused')
static def getGitCommitCount() {
def process = "git rev-list HEAD --count".execute()
return process.text.toInteger()
}