From 8422ea1a6e3b99e4c41637bff557290189713679 Mon Sep 17 00:00:00 2001 From: jcesarmobile Date: Thu, 25 Jan 2024 12:55:25 +0100 Subject: [PATCH] more updates --- google-maps/README.md | 8 ++++---- google-maps/android/build.gradle | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/google-maps/README.md b/google-maps/README.md index e23231299..0d858c28b 100644 --- a/google-maps/README.md +++ b/google-maps/README.md @@ -55,10 +55,10 @@ To use certain location features, the SDK requires the following permissions to This plugin will use the following project variables (defined in your app's `variables.gradle` file): -- `googleMapsPlayServicesVersion`: version of `com.google.android.gms:play-services-maps` (default: `18.1.0`) -- `googleMapsUtilsVersion`: version of `com.google.maps.android:android-maps-utils` (default: `3.5.3`) -- `googleMapsKtxVersion`: version of `com.google.maps.android:maps-ktx` (default: `3.4.0`) -- `googleMapsUtilsKtxVersion`: version of `com.google.maps.android:maps-utils-ktx` (default: `3.4.0`) +- `googleMapsPlayServicesVersion`: version of `com.google.android.gms:play-services-maps` (default: `18.2.0`) +- `googleMapsUtilsVersion`: version of `com.google.maps.android:android-maps-utils` (default: `3.8.2`) +- `googleMapsKtxVersion`: version of `com.google.maps.android:maps-ktx` (default: `5.0.0`) +- `googleMapsUtilsKtxVersion`: version of `com.google.maps.android:maps-utils-ktx` (default: `5.0.0`) - `kotlinxCoroutinesVersion`: version of `org.jetbrains.kotlinx:kotlinx-coroutines-android` and `org.jetbrains.kotlinx:kotlinx-coroutines-core` (default: `1.7.3`) - `androidxCoreKTXVersion`: version of `androidx.core:core-ktx` (default: `1.12.0`) - `kotlin_version`: version of `org.jetbrains.kotlin:kotlin-stdlib` (default: `1.9.10`) diff --git a/google-maps/android/build.gradle b/google-maps/android/build.gradle index 2166d1ac3..056e5af3d 100644 --- a/google-maps/android/build.gradle +++ b/google-maps/android/build.gradle @@ -6,9 +6,9 @@ ext { androidxEspressoCoreVersion = project.hasProperty('androidxEspressoCoreVersion') ? rootProject.ext.androidxEspressoCoreVersion : '3.5.1' androidxCoreKTXVersion = project.hasProperty('androidxCoreKTXVersion') ? rootProject.ext.androidxCoreKTXVersion : '1.12.0' googleMapsPlayServicesVersion = project.hasProperty('googleMapsPlayServicesVersion') ? rootProject.ext.googleMapsPlayServicesVersion : '18.2.0' - googleMapsUtilsVersion = project.hasProperty('googleMapsUtilsVersion') ? rootProject.ext.googleMapsUtilsVersion : '3.5.3' - googleMapsKtxVersion = project.hasProperty('googleMapsKtxVersion') ? rootProject.ext.googleMapsKtxVersion : '3.4.0' - googleMapsUtilsKtxVersion = project.hasProperty('googleMapsUtilsKtxVersion') ? rootProject.ext.googleMapsUtilsKtxVersion : '3.4.0' + googleMapsUtilsVersion = project.hasProperty('googleMapsUtilsVersion') ? rootProject.ext.googleMapsUtilsVersion : '3.8.2' + googleMapsKtxVersion = project.hasProperty('googleMapsKtxVersion') ? rootProject.ext.googleMapsKtxVersion : '5.0.0' + googleMapsUtilsKtxVersion = project.hasProperty('googleMapsUtilsKtxVersion') ? rootProject.ext.googleMapsUtilsKtxVersion : '5.0.0' kotlinxCoroutinesVersion = project.hasProperty('kotlinxCoroutinesVersion') ? rootProject.ext.kotlinxCoroutinesVersion : '1.7.3' }