Update a bunch of libraries' versions.

master
Severiano Jaramillo 2020-12-25 16:25:25 -08:00
parent 255821238a
commit af0f2f25e6
3 changed files with 10 additions and 10 deletions

View File

@ -63,8 +63,8 @@ android {
} }
dependencies { dependencies {
def lifecycle_version = "2.1.0" def lifecycle_version = "2.2.0"
def room_version = "2.2.3" def room_version = "2.2.6"
def rx_bindings_version = '3.0.0' def rx_bindings_version = '3.0.0'
implementation fileTree(dir: 'libs', include: ['*.jar']) implementation fileTree(dir: 'libs', include: ['*.jar'])
@ -72,8 +72,8 @@ dependencies {
implementation project(':PDFJet') implementation project(':PDFJet')
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
// AndroidX // 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.appcompat:appcompat:1.2.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3' // 2.0.0 beta version has a bug in PINSecurityLockDialog implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
// Google // Google
implementation 'com.google.zxing:core:3.4.0' implementation 'com.google.zxing:core:3.4.0'
implementation 'com.google.code.gson:gson:2.8.5' implementation 'com.google.code.gson:gson:2.8.5'
@ -122,12 +122,12 @@ dependencies {
// Testing libs // Testing libs
testImplementation 'junit:junit:4.12' 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.arch.core:core-testing:$lifecycle_version"
androidTestImplementation "androidx.room:room-testing:$room_version" androidTestImplementation "androidx.room:room-testing:$room_version"
androidTestImplementation 'androidx.test.ext:junit:1.1.1' androidTestImplementation 'androidx.test.ext:junit:1.1.2'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0' androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
androidTestImplementation 'com.jraska.livedata:testing-ktx:1.0.0' androidTestImplementation 'com.jraska.livedata:testing-ktx:1.0.0'
} }

View File

@ -13,7 +13,7 @@ import androidx.appcompat.widget.AppCompatTextView
* android:marqueeRepeatLimit="marquee_forever" * android:marqueeRepeatLimit="marquee_forever"
* android:scrollHorizontally="true" * android:scrollHorizontally="true"
*/ */
class AutoScrollingTextView(context: Context?, attrs: AttributeSet?) : AppCompatTextView(context, attrs) { class AutoScrollingTextView(context: Context, attrs: AttributeSet?) : AppCompatTextView(context, attrs) {
override fun onFocusChanged( override fun onFocusChanged(
focused: Boolean, direction: Int, focused: Boolean, direction: Int,
previouslyFocusedRect: Rect? previouslyFocusedRect: Rect?

View File

@ -3,9 +3,9 @@
buildscript { buildscript {
ext { ext {
kotlin_version = '1.3.61' kotlin_version = '1.4.10'
nav_version = '2.1.0' nav_version = '2.1.0'
version_coroutine = '1.3.1' version_coroutine = '1.3.7'
} }
repositories { repositories {