Skip to content
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class PublishingConventionPlugin : Plugin<Project> {

private fun Project.configureJacoco() {
configure<JacocoPluginExtension> {
toolVersion = "0.8.7"
toolVersion = "0.8.12"
}

tasks.withType<Test>().configureEach {
Expand Down
8 changes: 4 additions & 4 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ androidxCoreKtx = "1.18.0"
# Increasing androidxActivityKtx or lifecycleRuntimeKtx will require us to upgrade the minSdk
androidxActivityKtx = "1.13.0"
lifecycleRuntimeKtx = "2.10.0"
kotlin = "2.3.0"
kotlinxCoroutines = "1.10.2"
material = "1.13.0"
kotlin = "2.3.21"
kotlinxCoroutines = "1.11.0"
material = "1.14.0"
androidxStartup = "1.2.0"

# --- Google Maps ---
# Versions for Google Play Services libraries, which are essential for this sample.
androidMapsSdk = "20.0.0"
androidMapsUtils = "4.1.1"
androidMapsUtils = "4.3.0"

# --- Testing ---
# Versions for testing libraries.
Expand Down
6 changes: 6 additions & 0 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,13 +1,19 @@
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
if (System.getenv("USE_MAVEN_LOCAL") == "true") {
mavenLocal()
}
google()
mavenCentral()
}
}
pluginManagement {
includeBuild("build-logic")
repositories {
if (System.getenv("USE_MAVEN_LOCAL") == "true") {
mavenLocal()
}
google()
mavenCentral()
gradlePluginPortal()
Expand Down
Loading