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
12 changes: 6 additions & 6 deletions ApiDemos/project/gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,28 +1,28 @@
[versions]
minSdk = "21"
minSdk = "23"
compileSdk = "36"
targetSdk = "36"

activity = "1.11.0"
activity = "1.12.1"
activityKtx = "1.11.0"
androidxJunit = "1.3.0"
appcompat = "1.7.1"
cardview = "1.0.0"
coreKtx = "1.17.0"
easypermissions = "3.0.0"
espresso = "3.7.0"
gradle = "8.13.0"
gradle = "8.13.2"
junit = "4.13.2"
kotlin = "2.2.20"
lifecycle = "2.9.4"
kotlin = "2.2.21"
lifecycle = "2.10.0"
mapsKtx = "5.2.1"
material = "1.13.0"
multidex = "2.0.1"
playServicesMaps = "19.2.0"
recyclerview = "1.4.0"
secretsGradlePlugin = "2.0.1"
volley = "1.2.1"
truth = "1.1.3"
truth = "1.4.5"
uiautomator = "2.3.0"

[libraries]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ internal class Heatmaps {

// Create a heat map tile provider, passing it the latlngs of the police stations.
val provider = HeatmapTileProvider.Builder()
.data(latLngs)
.data(latLngs?.filterNotNull() ?: emptyList())
.build()

// Add a tile overlay to the map, using the heat map tile provider.
Expand Down
16 changes: 8 additions & 8 deletions snippets/gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,21 +8,21 @@ placesKtx = "3.5.0"
rxjava = "3.1.12"
targetSdk = "36"

agp = "8.13.0"
agp = "8.13.2"
appCompat = "1.7.1"
composeFoundation = "1.9.2"
composeMaterial = "1.9.2"
composeFoundation = "1.10.0"
composeMaterial = "1.10.0"
constraintLayout = "2.2.1"
coreKtx = "1.17.0"
espressoCore = "3.7.0"
junit = "4.13.2"
junitVersion = "1.3.0"
kotlin = "2.2.20"
lifecycleRuntime = "2.9.4"
mapsKtx = "5.2.0"
kotlin = "2.2.21"
lifecycleRuntime = "2.10.0"
mapsKtx = "5.2.1"
material = "1.13.0"
navigation = "2.9.5"
places = "5.0.0"
navigation = "2.9.6"
places = "5.1.1"
play-services-maps = "19.2.0"
rxlifecycleAndroidLifecycleKotlin = "4.0.2"
secretsGradlePlugin = "2.0.1"
Expand Down
Loading