Skip to content

Commit

Permalink
Bump Lib versions (#63)
Browse files Browse the repository at this point in the history
Kotlin
kotlin 2.0.0 to "2.0.20"
ksp 2.0.0-1.0.22 to "2.0.20-1.0.25"

Gradle
agp 8.5.0 to "8.5.2"
gradle version from 8.7 to 8.8

Deprecated
'srcDir(String): Unit' is deprecated. Deprecated in favor of 'srcDir(fileCollection)'
  • Loading branch information
ksharma-xyz authored Sep 27, 2024
1 parent 4917eee commit 17b6836
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 19 deletions.
11 changes: 2 additions & 9 deletions core/model/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,6 @@ plugins {
alias(libs.plugins.wire)
}

dependencies {
/*
implementation("com.google.protobuf:protobuf-javalite:3.25.3") // Replace with latest version
implementation("com.google.protobuf:protobuf-kotlin-lite:3.25.3") // Replace with latest version
*/
}

wire {
kotlin {
javaInterop = true
Expand All @@ -19,9 +12,9 @@ wire {
singleMethodServices = false
}
protoPath {
srcDir("src/main/proto")
srcDir(files("src/main/proto"))
}
sourcePath {
srcDir("src/main/proto")
srcDir(files("src/main/proto"))
}
}
2 changes: 1 addition & 1 deletion core/network/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ wire {
javaInterop = true
}
sourcePath {
srcDir("src/main/proto")
srcDir(files("src/main/proto"))
}
}

Expand Down
16 changes: 8 additions & 8 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
[versions]
java = "17"
agp = "8.5.0"
kotlin = "2.0.0"
agp = "8.5.2"
kotlin = "2.0.20"
androidGradlePlugin = "8.2.2"
core-ktx = "1.13.1"
junit = "4.13.2"
androidx-test = "1.6.1"
androidx-test-ext-junit = "1.2.1"
android-lifecycle = "2.8.3"
activity-compose = "1.9.0"
compose-bom = "2024.06.00"
compose-navigation = "2.7.7"
android-lifecycle = "2.8.6"
activity-compose = "1.9.2"
compose-bom = "2024.09.02"
compose-navigation = "2.8.1"
detekt = "1.23.6"
detektCompose = "0.4.5"
hilt = "2.51.1"
okhttpBom = "4.12.0"
kotlinxSerializationJson = "1.7.0"
ksp = "2.0.0-1.0.22"
kotlinxSerializationJson = "1.7.2"
ksp = "2.0.20-1.0.25" # ksp to kotlin version mapping https://github.com/google/ksp/releases
opencsv = "5.5.2"
paparazzi = "1.3.2"
retrofit = "2.9.0"
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Sat Feb 10 22:11:04 AEDT 2024
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit 17b6836

Please sign in to comment.