forked from tunitowen/DevDrawer
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathbuild.gradle
More file actions
38 lines (32 loc) · 1.03 KB
/
build.gradle
File metadata and controls
38 lines (32 loc) · 1.03 KB
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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
alias(libs.plugins.android.application) apply false
alias(libs.plugins.compose.compiler) apply false
alias(libs.plugins.google.services) apply false
alias(libs.plugins.firebase.crashlytics) apply false
alias(libs.plugins.navigation.safeargs) apply false
alias(libs.plugins.hilt.android) apply false
alias(libs.plugins.ksp) apply false
alias(libs.plugins.sonarqube)
}
apply from: rootProject.file('gradle/versioning.gradle')
allprojects {
group "de.psdev.devdrawer"
version enhancedVersion(3, 0, 0)
project.ext {
// Project versions
gitHash = gitScmVersion()
appVersionName = project.version
appVersionCode = buildVersionCode()
}
}
tasks.register('clean', Delete) {
delete rootProject.layout.buildDirectory
}
wrapper {
gradleVersion = '9.4.1'
distributionType = "all"
}
tasks.register('printVersion') {
println("Version: ${project.version}")
}