Update a bunch of libraries' versions.
This commit is contained in:
parent
255821238a
commit
af0f2f25e6
3 changed files with 10 additions and 10 deletions
|
@ -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'
|
||||
}
|
||||
|
||||
|
|
|
@ -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?
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue