Skip to content
This repository was archived by the owner on Oct 15, 2024. It is now read-only.

Commit edec55d

Browse files
committed
Downgrade coroutines to 1.3.6 to fix VerifyErrors
1 parent 1c7daff commit edec55d

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44

55
## [Unreleased]
66

7+
### Fixed
8+
9+
- Worked around a dependency bug that would crash the Autofill service when triggered on an OTP field
10+
711
## [1.10.2] - 2020-07-30
812

913
### Fixed

dependencies.gradle

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,9 @@ ext.deps = [
1717

1818
kotlin: [
1919
coroutines: [
20-
android: 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.7',
21-
core: 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.7',
20+
// #989: Keep these at 1.3.6 as long as we are not using Kotlin 1.4 to prevent crashes.
21+
android: 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.6',
22+
core: 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.6',
2223
],
2324
stdlib8: 'org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.72'
2425
],

0 commit comments

Comments
 (0)