From af0f2f25e67fe825b4a9f0363bde946dc793936f Mon Sep 17 00:00:00 2001 From: Severiano Jaramillo Date: Fri, 25 Dec 2020 16:25:25 -0800 Subject: [PATCH] Update a bunch of libraries' versions. --- app/build.gradle | 14 +++++++------- .../views/AutoScrollingTextView.kt | 2 +- build.gradle | 4 ++-- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 7287c67..d17aa38 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -63,8 +63,8 @@ android { } dependencies { - def lifecycle_version = "2.1.0" - def room_version = "2.2.3" + def lifecycle_version = "2.2.0" + def room_version = "2.2.6" def rx_bindings_version = '3.0.0' implementation fileTree(dir: 'libs', include: ['*.jar']) @@ -72,8 +72,8 @@ dependencies { implementation project(':PDFJet') implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" // AndroidX - implementation 'androidx.appcompat:appcompat:1.1.0-beta01' // Not updating to 1.1.0 due to a crash in Android 5.0.2's WebView - implementation 'androidx.constraintlayout:constraintlayout:1.1.3' // 2.0.0 beta version has a bug in PINSecurityLockDialog + implementation 'androidx.appcompat:appcompat:1.2.0' + implementation 'androidx.constraintlayout:constraintlayout:2.0.4' // Google implementation 'com.google.zxing:core:3.4.0' implementation 'com.google.code.gson:gson:2.8.5' @@ -122,12 +122,12 @@ dependencies { // Testing libs testImplementation 'junit:junit:4.12' - androidTestImplementation 'androidx.test:core:1.2.0' + androidTestImplementation 'androidx.test:core:1.3.0' androidTestImplementation "androidx.arch.core:core-testing:$lifecycle_version" androidTestImplementation "androidx.room:room-testing:$room_version" - androidTestImplementation 'androidx.test.ext:junit:1.1.1' - androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0' + androidTestImplementation 'androidx.test.ext:junit:1.1.2' + androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0' androidTestImplementation 'com.jraska.livedata:testing-ktx:1.0.0' } diff --git a/app/src/main/java/cy/agorise/bitsybitshareswallet/views/AutoScrollingTextView.kt b/app/src/main/java/cy/agorise/bitsybitshareswallet/views/AutoScrollingTextView.kt index 018ca76..883635f 100644 --- a/app/src/main/java/cy/agorise/bitsybitshareswallet/views/AutoScrollingTextView.kt +++ b/app/src/main/java/cy/agorise/bitsybitshareswallet/views/AutoScrollingTextView.kt @@ -13,7 +13,7 @@ import androidx.appcompat.widget.AppCompatTextView * android:marqueeRepeatLimit="marquee_forever" * android:scrollHorizontally="true" */ -class AutoScrollingTextView(context: Context?, attrs: AttributeSet?) : AppCompatTextView(context, attrs) { +class AutoScrollingTextView(context: Context, attrs: AttributeSet?) : AppCompatTextView(context, attrs) { override fun onFocusChanged( focused: Boolean, direction: Int, previouslyFocusedRect: Rect? diff --git a/build.gradle b/build.gradle index 8a5c631..cef5fd3 100644 --- a/build.gradle +++ b/build.gradle @@ -3,9 +3,9 @@ buildscript { ext { - kotlin_version = '1.3.61' + kotlin_version = '1.4.10' nav_version = '2.1.0' - version_coroutine = '1.3.1' + version_coroutine = '1.3.7' } repositories {