From 3d6adaad2ce86a270e35ef8fc7f7886c0f37f59e Mon Sep 17 00:00:00 2001 From: Tom Hicks Date: Sun, 15 Aug 2021 14:23:27 -0700 Subject: [PATCH] Updates dependencies to latest versions. --- Android/app/build.gradle | 18 +++++++++--------- Android/build.gradle | 2 +- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Android/app/build.gradle b/Android/app/build.gradle index 724ae07..22d225b 100644 --- a/Android/app/build.gradle +++ b/Android/app/build.gradle @@ -13,13 +13,13 @@ def appCenterEnvSecret = System.getenv('APPCENTER_SECRET') def appCenterSecret = appCenterLocalSecret != null ? appCenterLocalSecret : appCenterEnvSecret != null ? appCenterEnvSecret : "" android { - compileSdkVersion 30 + compileSdkVersion 31 buildToolsVersion '30.0.3' defaultConfig { applicationId "com.majinnaibu.monstercards" minSdkVersion 22 - targetSdkVersion 30 + targetSdkVersion 31 versionCode 1 versionName "1.0" buildConfigField "String", "APPCENTER_SECRET", "\"${appCenterSecret}\"" @@ -83,7 +83,7 @@ dependencies { androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0' // Room DB - implementation "io.reactivex.rxjava3:rxjava:3.0.0" + implementation 'io.reactivex.rxjava3:rxjava:3.1.0' implementation "io.reactivex.rxjava3:rxandroid:3.0.0" implementation "androidx.room:room-runtime:2.3.0" annotationProcessor "androidx.room:room-compiler:2.3.0" @@ -91,15 +91,15 @@ dependencies { //testImplementation "androidx.room:room-testing:2.3.0" // AppCenter - debugImplementation "com.microsoft.appcenter:appcenter-analytics:3.3.3" - debugImplementation "com.microsoft.appcenter:appcenter-crashes:3.3.3" + debugImplementation 'com.microsoft.appcenter:appcenter-analytics:4.2.0' + debugImplementation 'com.microsoft.appcenter:appcenter-crashes:4.2.0' // Flipper - debugImplementation "com.facebook.flipper:flipper:0.87.0" + debugImplementation 'com.facebook.flipper:flipper:0.102.0' debugImplementation "com.facebook.soloader:soloader:0.10.1" - releaseImplementation "com.facebook.flipper:flipper-noop:0.87.0" + releaseImplementation 'com.facebook.flipper:flipper-noop:0.102.0' // Other 3rd Party - implementation 'com.atlassian.commonmark:commonmark:0.15.2' - implementation "com.google.code.gson:gson:2.8.6" + implementation 'com.atlassian.commonmark:commonmark:0.17.0' + implementation 'com.google.code.gson:gson:2.8.7' } diff --git a/Android/build.gradle b/Android/build.gradle index 17ee59b..71e4554 100644 --- a/Android/build.gradle +++ b/Android/build.gradle @@ -6,7 +6,7 @@ buildscript { } dependencies { classpath 'com.android.tools.build:gradle:7.0.0' - classpath "androidx.navigation:navigation-safe-args-gradle-plugin:2.3.0" + classpath "androidx.navigation:navigation-safe-args-gradle-plugin:2.3.5" // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files