Skip to content

Commit 1177956

Browse files
Update dependencies
1 parent 414f0ad commit 1177956

File tree

3 files changed

+18
-13
lines changed

3 files changed

+18
-13
lines changed

app/build.gradle.kts

+15-10
Original file line numberDiff line numberDiff line change
@@ -22,27 +22,32 @@ if (localPropertiesFile.exists()) {
2222
localPropertiesFile.inputStream().use(localProperties::load)
2323
}
2424

25-
fun getValue(name: String): String? =
26-
System.getenv(name.replace('.', '_').uppercase())
27-
?: localProperties.getProperty(name)
28-
2925
enum class VersionSuffix(val value: Int) {
3026
DEV(0),
3127
RELEASE(1),
3228
HOTFIX(2),
3329
MAIN(3)
3430
}
3531

32+
interface Git {
33+
@get:Inject val operations: ExecOperations
3634

37-
fun git(vararg args: String): String {
38-
val outputStream = ByteArrayOutputStream()
39-
exec {
40-
commandLine("git", *args)
41-
standardOutput = outputStream
35+
fun exec(vararg args: String): String {
36+
val outputStream = ByteArrayOutputStream()
37+
operations.exec {
38+
commandLine("git", *args)
39+
standardOutput = outputStream
40+
}
41+
return outputStream.toString().trim()
4242
}
43-
return outputStream.toString().trim()
4443
}
4544

45+
fun getValue(name: String): String? =
46+
System.getenv(name.replace('.', '_').uppercase())
47+
?: localProperties.getProperty(name)
48+
49+
fun git(vararg args: String) = project.objects.newInstance<Git>().exec(*args)
50+
4651
fun getVersionNumberSuffix(): VersionSuffix {
4752
val ref = git("describe", "--tags", "--always")
4853
val branch = git("branch")

gradle/libs.versions.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ kotlinPlugin = "2.0.21"
44
sentryPlugin = "4.13.0"
55
openapiPlugin = "7.9.0"
66
protobufPlugin = "0.9.4"
7-
kspPlugin = "2.0.21-1.0.26"
7+
kspPlugin = "2.0.21-1.0.27"
88
androidxComposeBom = "2024.10.01"
99
androidxActivity = "1.9.3"
1010
androidxComposeAnimation = "1.7.5"
@@ -19,7 +19,7 @@ androidxJunit = "1.2.1"
1919
androidxWork = "2.10.0"
2020
coilCompose = "2.7.0"
2121
conscrypt = "2.5.3"
22-
desugar = "2.1.2"
22+
desugar = "2.1.3"
2323
hilt = "2.52"
2424
junit = "4.13.2"
2525
kotlinxCouroutines = "1.9.0"

gradle/wrapper/gradle-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

0 commit comments

Comments
 (0)