From 6937cc740657299234bd31b5c8b9585c1f363df7 Mon Sep 17 00:00:00 2001 From: William Brawner Date: Sat, 20 Feb 2021 19:59:06 -0700 Subject: [PATCH] Bump dependency versions --- app/build.gradle | 25 ++++++++++++------------ build.gradle | 8 ++++---- gradle/wrapper/gradle-wrapper.properties | 4 ++-- 3 files changed, 19 insertions(+), 18 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index a2fd5b6..8fa6a59 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -88,8 +88,9 @@ android { dependencies { samsungImplementation project(":IAP5Helper") - implementation 'androidx.navigation:navigation-fragment-ktx:2.3.0' - implementation 'androidx.navigation:navigation-ui-ktx:2.3.0' + def navigation_version = '2.3.3' + implementation "androidx.navigation:navigation-fragment-ktx:$navigation_version" + implementation "androidx.navigation:navigation-ui-ktx:$navigation_version" testImplementation 'junit:junit:4.12' testImplementation 'org.robolectric:robolectric:4.2.1' implementation fileTree(include: ['*.jar'], dir: 'libs') @@ -97,25 +98,25 @@ dependencies { androidTestImplementation "androidx.test.espresso:espresso-core:$espresso_version" androidTestImplementation "androidx.test.espresso:espresso-web:$espresso_version" androidTestImplementation "androidx.test.espresso:espresso-intents:$espresso_version" - def android_test = '1.3.0' + def android_test = '1.4.0-alpha04' androidTestImplementation "androidx.test:runner:$android_test" androidTestImplementation "androidx.test:rules:$android_test" androidTestUtil "androidx.test:orchestrator:$android_test" androidTestImplementation 'androidx.test.ext:junit:1.1.2' androidTestImplementation 'androidx.test.uiautomator:uiautomator:2.2.0' implementation 'androidx.appcompat:appcompat:1.2.0' - implementation 'androidx.preference:preference:1.1.1' - implementation "androidx.fragment:fragment-ktx:1.2.5" - implementation 'androidx.constraintlayout:constraintlayout:2.0.1' - implementation 'com.google.android.material:material:1.2.1' + implementation 'androidx.preference:preference-ktx:1.1.1' + implementation "androidx.fragment:fragment-ktx:1.3.0" + implementation 'androidx.constraintlayout:constraintlayout:2.0.4' + implementation 'com.google.android.material:material:1.3.0' implementation 'androidx.legacy:legacy-support-v13:1.0.0' implementation 'com.commonsware.cwac:anddown:0.3.0' - playImplementation 'com.android.billingclient:billing:3.0.0' + playImplementation 'com.android.billingclient:billing:3.0.2' playImplementation 'com.google.android.play:core-ktx:1.8.1' - playImplementation 'com.google.firebase:firebase-crashlytics:17.2.1' - playImplementation 'com.google.firebase:firebase-analytics:17.5.0' - implementation "androidx.core:core-ktx:1.3.1" - implementation 'androidx.browser:browser:1.2.0' + playImplementation 'com.google.firebase:firebase-crashlytics:17.3.1' + playImplementation 'com.google.firebase:firebase-analytics:18.0.2' + implementation "androidx.core:core-ktx:1.3.2" + implementation 'androidx.browser:browser:1.3.0' implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" def coroutines_version = "1.3.7" implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutines_version" diff --git a/build.gradle b/build.gradle index a5a151f..159ef04 100644 --- a/build.gradle +++ b/build.gradle @@ -1,15 +1,15 @@ // Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { - ext.kotlin_version = '1.3.72' + ext.kotlin_version = '1.4.30' repositories { jcenter() google() } dependencies { - classpath 'com.android.tools.build:gradle:4.0.1' - classpath 'com.google.gms:google-services:4.3.3' - classpath 'com.google.firebase:firebase-crashlytics-gradle:2.3.0' + classpath 'com.android.tools.build:gradle:4.1.2' + classpath 'com.google.gms:google-services:4.3.5' + classpath 'com.google.firebase:firebase-crashlytics-gradle:2.5.0' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" } } diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index d5089a9..5ba1dd6 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ -#Mon Sep 21 10:36:14 MST 2020 +#Sat Feb 20 17:33:55 MST 2021 distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-6.1.1-all.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-6.5-bin.zip