[android] Update Android Gradle Plugin to 8.3 #7554

Merged
biodranik merged 2 commits from ab-agp-8.3 into master 2024-03-10 07:51:28 +00:00
2 changed files with 7 additions and 7 deletions

View file

@ -22,7 +22,7 @@ buildscript {
googleFirebaseServicesDefault
dependencies {
classpath 'com.android.tools.build:gradle:8.2.1'
classpath 'com.android.tools.build:gradle:8.3.0'
if (googleFirebaseServicesEnabled) {
println('Building with Google Firebase Services')
@ -365,14 +365,14 @@ dependencies {
// ls -la src/$flavor/java/app/organicmaps/location/GoogleFusedLocationProvider.java
// ```
//
webImplementation 'com.google.android.gms:play-services-location:21.1.0'
googleImplementation 'com.google.android.gms:play-services-location:21.1.0'
huaweiImplementation 'com.google.android.gms:play-services-location:21.1.0'
webImplementation 'com.google.android.gms:play-services-location:21.2.0'
googleImplementation 'com.google.android.gms:play-services-location:21.2.0'
huaweiImplementation 'com.google.android.gms:play-services-location:21.2.0'
// Google Firebase Services
if (googleFirebaseServicesEnabled) {
// Import the BoM for the Firebase platform
implementation platform('com.google.firebase:firebase-bom:32.7.1')
implementation platform('com.google.firebase:firebase-bom:32.7.4')
// Add the dependencies for the Crashlytics and Analytics libraries
// When using the BoM, you don't specify versions in Firebase library dependencies
implementation 'com.google.firebase:firebase-crashlytics'

View file

@ -1,5 +1,5 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id 'com.android.application' version '8.2.1' apply false
id 'com.android.library' version '8.2.1' apply false
id 'com.android.application' version '8.3.0' apply false
id 'com.android.library' version '8.3.0' apply false
}