diff options
author | Fabian Henneke <fabian@henneke.me> | 2020-07-31 09:41:24 +0200 |
---|---|---|
committer | Fabian Henneke <fabian@henneke.me> | 2020-07-31 09:45:02 +0200 |
commit | edec55dc8c35fb6b8b79fed9901ee4a2b39e7fcb (patch) | |
tree | c0f4ce8b343bbe23a3ecca41bf1949f61b7fa404 | |
parent | 1c7daff5baa71a659d5f5a94001df0f21feea4bc (diff) |
Downgrade coroutines to 1.3.6 to fix VerifyErrors
-rw-r--r-- | CHANGELOG.md | 4 | ||||
-rw-r--r-- | dependencies.gradle | 5 |
2 files changed, 7 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 204704be..f691a7d1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. ## [Unreleased] +### Fixed + +- Worked around a dependency bug that would crash the Autofill service when triggered on an OTP field + ## [1.10.2] - 2020-07-30 ### Fixed diff --git a/dependencies.gradle b/dependencies.gradle index d05e0e6d..301b4ea9 100644 --- a/dependencies.gradle +++ b/dependencies.gradle @@ -17,8 +17,9 @@ ext.deps = [ kotlin: [ coroutines: [ - android: 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.7', - core: 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.7', + // #989: Keep these at 1.3.6 as long as we are not using Kotlin 1.4 to prevent crashes. + android: 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.6', + core: 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.6', ], stdlib8: 'org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.72' ], |