Skip to content

Commit 190581a

Browse files
authored
feat:! increased versions (#2340)
* feat:! increased versions * fix: snippet
1 parent 95aa817 commit 190581a

File tree

3 files changed

+15
-15
lines changed

3 files changed

+15
-15
lines changed

ApiDemos/project/gradle/libs.versions.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,28 @@
11
[versions]
2-
minSdk = "21"
2+
minSdk = "23"
33
compileSdk = "36"
44
targetSdk = "36"
55

6-
activity = "1.11.0"
6+
activity = "1.12.1"
77
activityKtx = "1.11.0"
88
androidxJunit = "1.3.0"
99
appcompat = "1.7.1"
1010
cardview = "1.0.0"
1111
coreKtx = "1.17.0"
1212
easypermissions = "3.0.0"
1313
espresso = "3.7.0"
14-
gradle = "8.13.0"
14+
gradle = "8.13.2"
1515
junit = "4.13.2"
16-
kotlin = "2.2.20"
17-
lifecycle = "2.9.4"
16+
kotlin = "2.2.21"
17+
lifecycle = "2.10.0"
1818
mapsKtx = "5.2.1"
1919
material = "1.13.0"
2020
multidex = "2.0.1"
2121
playServicesMaps = "19.2.0"
2222
recyclerview = "1.4.0"
2323
secretsGradlePlugin = "2.0.1"
2424
volley = "1.2.1"
25-
truth = "1.1.3"
25+
truth = "1.4.5"
2626
uiautomator = "2.3.0"
2727

2828
[libraries]

snippets/app-utils-ktx/src/main/java/com/example/app_utils_ktx/Heatmaps.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ internal class Heatmaps {
4949

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

5555
// Add a tile overlay to the map, using the heat map tile provider.

snippets/gradle/libs.versions.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,21 +8,21 @@ placesKtx = "3.5.0"
88
rxjava = "3.1.12"
99
targetSdk = "36"
1010

11-
agp = "8.13.0"
11+
agp = "8.13.2"
1212
appCompat = "1.7.1"
13-
composeFoundation = "1.9.2"
14-
composeMaterial = "1.9.2"
13+
composeFoundation = "1.10.0"
14+
composeMaterial = "1.10.0"
1515
constraintLayout = "2.2.1"
1616
coreKtx = "1.17.0"
1717
espressoCore = "3.7.0"
1818
junit = "4.13.2"
1919
junitVersion = "1.3.0"
20-
kotlin = "2.2.20"
21-
lifecycleRuntime = "2.9.4"
22-
mapsKtx = "5.2.0"
20+
kotlin = "2.2.21"
21+
lifecycleRuntime = "2.10.0"
22+
mapsKtx = "5.2.1"
2323
material = "1.13.0"
24-
navigation = "2.9.5"
25-
places = "5.0.0"
24+
navigation = "2.9.6"
25+
places = "5.1.1"
2626
play-services-maps = "19.2.0"
2727
rxlifecycleAndroidLifecycleKotlin = "4.0.2"
2828
secretsGradlePlugin = "2.0.1"

0 commit comments

Comments
 (0)