Skip to content

Commit

Permalink
Upgrade protobuf deps
Browse files Browse the repository at this point in the history
  • Loading branch information
jkuester committed Jan 7, 2024
1 parent 64a25d5 commit e43bf4c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
id("com.android.application")
id("dagger.hilt.android.plugin")
id("com.google.devtools.ksp")
id("com.google.protobuf") version "0.9.0"
id("com.google.protobuf") version "0.9.4"
kotlin("android")
}

Expand Down Expand Up @@ -63,8 +63,8 @@ android {
warningsAsErrors = true
disable += "Typos" // Too many false positives
disable += "VectorPath" // Not planning to change "large" graphics for now
disable += "GradleDependency" // Do not fail linting due to new dependencies
checkDependencies = false
// disable += "GradleDependency" // Do not fail linting due to new dependencies
// checkDependencies = false
}
namespace = "com.sduduzog.slimlauncher"
applicationVariants.all{
Expand Down Expand Up @@ -104,7 +104,7 @@ dependencies {
}
protobuf {
protoc {
artifact = "com.google.protobuf:protoc:3.17.3"
artifact = "com.google.protobuf:protoc:3.25.1"
}
generateProtoTasks {
all().forEach { task ->
Expand Down

0 comments on commit e43bf4c

Please sign in to comment.