Downgrade coroutines to 1.3.6 to fix VerifyErrors
This commit is contained in:
parent
1c7daff5ba
commit
edec55dc8c
2 changed files with 7 additions and 2 deletions
|
@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
## [Unreleased]
|
## [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
|
## [1.10.2] - 2020-07-30
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
|
@ -17,8 +17,9 @@ ext.deps = [
|
||||||
|
|
||||||
kotlin: [
|
kotlin: [
|
||||||
coroutines: [
|
coroutines: [
|
||||||
android: 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.7',
|
// #989: Keep these at 1.3.6 as long as we are not using Kotlin 1.4 to prevent crashes.
|
||||||
core: 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.7',
|
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'
|
stdlib8: 'org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.72'
|
||||||
],
|
],
|
||||||
|
|
Loading…
Reference in a new issue