Downgrade ConstraintLayout library version.

- After a lot of search I found that the issue with the EditText in the PINSecurityLockDialog being hidden below the SoftKeyboard was due to a bug in the ConstraintLayout library.
master
Severiano Jaramillo 2019-10-01 14:09:35 -05:00
parent 858744a75a
commit 72fc8b2ea9
1 changed files with 2 additions and 2 deletions

View File

@ -74,8 +74,8 @@ dependencies {
implementation project(':graphenejlib:graphenej')
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
// AndroidX
implementation 'androidx.appcompat:appcompat:1.1.0-beta01' // Not updating to 1.0.0 due to a crash in Android 5.0.2's WebView
implementation 'androidx.constraintlayout:constraintlayout:2.0.0-beta2'
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
// Google
implementation 'com.google.zxing:core:3.4.0'
implementation 'com.google.code.gson:gson:2.8.5'