[android] Upgraded dependencies

Signed-off-by: Alexander Borsuk <me@alex.bio>
This commit is contained in:
Alexander Borsuk 2023-05-09 14:27:10 +02:00 committed by Alexander Borsuk
parent ab507c6a5e
commit b2e129a30c

View file

@ -12,8 +12,8 @@ buildscript {
// Detect flavors from the task name.
def taskName = getGradle().getStartParameter().getTaskRequests().toString().toLowerCase()
def isFdroid = taskName.contains("fdroid")
def isBeta = taskName.contains("beta")
def isFdroid = taskName.contains('fdroid')
def isBeta = taskName.contains('beta')
// Enable Google Mobile Services for all flavors except fdroid.
def googleMobileServicesDefault = !isFdroid
@ -29,22 +29,22 @@ buildscript {
classpath 'com.android.tools.build:gradle:8.0.1'
if (googleMobileServicesEnabled) {
println("Building with Google Mobile Services")
println('Building with Google Mobile Services')
classpath 'com.google.gms:google-services:4.3.15'
} else {
println("Building without Google Services")
println('Building without Google Services')
}
if (googleFirebaseServicesEnabled) {
println("Building with Google Firebase Services")
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.9.4'
println('Building with Google Firebase Services')
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.9.5'
classpath 'com.google.firebase:firebase-appdistribution-gradle:4.0.0'
} else {
println("Building without Google Firebase Services")
println('Building without Google Firebase Services')
}
classpath("com.github.triplet.gradle:play-publisher:3.8.1")
classpath("ru.cian:huawei-publish-gradle-plugin:1.3.5")
classpath('com.github.triplet.gradle:play-publisher:3.8.2')
classpath('ru.cian:huawei-publish-gradle-plugin:1.4.0')
}
}
@ -75,7 +75,7 @@ dependencies {
// Google Firebase Services
if (googleFirebaseServicesEnabled) {
// Import the BoM for the Firebase platform
implementation platform('com.google.firebase:firebase-bom:31.2.3')
implementation platform('com.google.firebase:firebase-bom:32.0.0')
// 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'
@ -85,23 +85,23 @@ dependencies {
// This line is added as a workaround for duplicate classes error caused by some outdated dependency:
// > A failure occurred while executing com.android.build.gradle.internal.tasks.CheckDuplicatesRunnable
// We don't use Kotlin, but some dependencies are actively using it.
implementation(platform('org.jetbrains.kotlin:kotlin-bom:1.8.10'))
implementation(platform('org.jetbrains.kotlin:kotlin-bom:1.8.21'))
implementation 'androidx.annotation:annotation:1.6.0'
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation 'androidx.fragment:fragment:1.5.5'
implementation 'androidx.fragment:fragment:1.5.7'
implementation 'androidx.preference:preference:1.2.0'
implementation 'androidx.recyclerview:recyclerview:1.3.0'
implementation 'androidx.work:work-runtime:2.8.0'
implementation 'com.google.android.material:material:1.8.0'
implementation 'androidx.work:work-runtime:2.8.1'
implementation 'com.google.android.material:material:1.9.0'
implementation 'com.google.code.gson:gson:2.10.1'
implementation 'com.github.devnullorthrow:MPAndroidChart:3.2.0-alpha'
implementation 'net.jcip:jcip-annotations:1.0'
// Test Dependencies
testImplementation 'junit:junit:4.13.2'
testImplementation 'org.mockito:mockito-core:5.1.1'
testImplementation 'org.mockito:mockito-inline:5.1.1'
testImplementation 'org.mockito:mockito-core:5.3.1'
testImplementation 'org.mockito:mockito-inline:5.2.0'
}
def run(cmd) {