Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 12 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -106,10 +106,18 @@ allprojects {
dependencySubstitution {
substitute(module("com.google.protobuf:protobuf-java")).using(module("com.google.protobuf:protobuf-javalite:4.35.1"))
}
force("io.grpc:grpc-stub:1.82.2")
force("io.grpc:grpc-protobuf-lite:1.82.2")
force("io.grpc:grpc-android:1.82.2")
force("io.grpc:grpc-binder:1.82.2")
force(rootProject.libs.grpc.stub)
force(rootProject.libs.io.grpc.protobuf.lite)
force(rootProject.libs.io.grpc.grpc.android)
force(rootProject.libs.io.grpc.grpc.binder)
eachDependency {
if (requested.group == "androidx.core" && (requested.name == "core" || requested.name == "core-ktx")) {
useVersion(rootProject.libs.versions.androidxCore.get())
}
if (requested.group == "androidx.lifecycle") {
useVersion(rootProject.libs.versions.androidxLifecycle.get())
}
}
}
}
}
Expand Down
24 changes: 12 additions & 12 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,16 +33,16 @@ app-cash-turbine = "1.2.1"
appcompat = "1.7.1"
com-squareup-okhttp3 = "5.4.0"
com-squareup-retrofit2 = "3.0.0"
compose-animation = "1.11.0"
compose-animation = "1.11.4"
compose-material3 = "1.4.0"
composeAiTools = "0.17.2"
composeAiTools = "0.18.5"
composesnapshot = "-"
dependencyAnalysis = "3.17.0"
dependencyAnalysis = "3.18.0"
desugar_jdk_libs = "2.1.5"
dokka = "2.2.0"
googledagger = "2.60.1"
gradlePublishPlugin = "0.37.0"
grpcStub = "1.82.2"
grpcStub = "1.83.0"
io-coil-kt = "2.7.0"
junit = "4.13.2"
kotlin = "2.4.10"
Expand All @@ -53,21 +53,21 @@ ktlint = "1.8.0"
material = "1.14.0"
metalava = "0.5.0"
moshi = "1.15.2"
okio = "3.17.0"
okio = "3.18.0"
org-robolectric = "4.16.1"
ossLicensesPlugin = "0.13.0"
osslicenses = "0.10.0"
playServicesAuth = "21.6.0"
playServicesOssLicenses = "17.5.1"
# Stay on 4.26.1 due to https://github.com/firebase/firebase-android-sdk/issues/5997
protobuf = "4.34.1"
protobuf-gen-grpc-java = "1.82.2"
protobuf-gen-grpc-java = "1.83.0"
protobuf-gen-grpc-kotlin = "1.5.0:jdk8@jar"
protobuf-gen-javalite = "3.0.0"
roborazzi = "1.70.0"
room = "2.8.4"
runtimeTracing = "1.11.4"
spotless = "8.8.0"
spotless = "8.9.0"
ktfmt = "0.26.0"
tiles-tooling-preview = "1.6.1"
truth = "1.4.5"
Expand All @@ -77,7 +77,7 @@ wearcompose = "1.6.2"
glanceWear = "1.0.0-alpha14"
composeRemote = "1.0.0-alpha15"
wearComposeRemote = "1.0.0-alpha07"
agp = "9.3.0"
agp = "9.3.1"

[libraries]
accessibility-test-framework = { module = "com.google.android.apps.common.testing.accessibility.framework:accessibility-test-framework", version.ref = "accessibilityTestFramework" }
Expand Down Expand Up @@ -197,16 +197,16 @@ dagger-hiltandroidplugin = { module = "com.google.dagger:hilt-android-gradle-plu
dagger-hiltandroidtesting = { module = "com.google.dagger:hilt-android-testing", version.ref = "googledagger" }
desugar-jdk-libs = { module = "com.android.tools:desugar_jdk_libs", version.ref = "desugar_jdk_libs" }
dokka = { module = "org.jetbrains.dokka:dokka-gradle-plugin", version.ref = "dokka" }
google-genai = "com.google.genai:google-genai:1.62.0"
google-genai = "com.google.genai:google-genai:1.63.0"
gradleMavenPublishPlugin = { module = "com.vanniktech:gradle-maven-publish-plugin", version.ref = "gradlePublishPlugin" }
grpc-stub = { module = "io.grpc:grpc-stub", version.ref = "grpcStub" }
hilt-ext-compiler = { module = "androidx.hilt:hilt-compiler", version.ref = "androidx-hilt" }
hilt-ext-work = { module = "androidx.hilt:hilt-work", version.ref = "androidx-hilt" }
hilt-navigationcompose = { module = "androidx.hilt:hilt-navigation-compose", version.ref = "androidx-hilt" }
io-grpc-grpc-android = "io.grpc:grpc-android:1.82.2"
io-grpc-grpc-binder = "io.grpc:grpc-binder:1.82.2"
io-grpc-grpc-android = { module = "io.grpc:grpc-android", version.ref = "grpcStub" }
io-grpc-grpc-binder = { module = "io.grpc:grpc-binder", version.ref = "grpcStub" }
io-grpc-grpc-kotlin = "io.grpc:grpc-kotlin-stub:1.5.0"
io-grpc-protobuf-lite = "io.grpc:grpc-protobuf-lite:1.82.2"
io-grpc-protobuf-lite = { module = "io.grpc:grpc-protobuf-lite", version.ref = "grpcStub" }
junit = { module = "junit:junit", version.ref = "junit" }
kotlin-gradlePlugin = { module = "org.jetbrains.kotlin:kotlin-gradle-plugin", version.ref = "kotlin" }
kotlin-reflect = { module = "org.jetbrains.kotlin:kotlin-reflect", version.ref = "kotlin" }
Expand Down
23 changes: 22 additions & 1 deletion renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,30 @@
},
{
"matchPackagePatterns": [
"androidx.datastore:*",
"androidx.datastore:*"
],
"allowedVersions": "<=1.1.4"
},
{
"matchPackagePatterns": [
"androidx.core:*"
],
"allowedVersions": "<1.19.0",
"description": "Requires compileSdk 37"
},
{
"matchPackagePatterns": [
"androidx.lifecycle:*"
],
"allowedVersions": "<2.11.0",
"description": "Requires compileSdk 37"
},
{
"matchPackagePatterns": [
"androidx.hilt:*"
],
"allowedVersions": "<1.4.0",
"description": "Requires compileSdk 37"
}
]
}
Loading