Skip to content
This repository was archived by the owner on Apr 18, 2023. It is now read-only.

Commit beb1432

Browse files
committed
Upgrade kotlinx-coroutines deps to 1.4.2.
This seems changes Proguard junk to get rid of some warnings while building: R8: Missing class: java.lang.instrument.ClassFileTransformer R8: Missing class: sun.misc.SignalHandler Kotlin/kotlinx.coroutines#2266 (It may only fix ClassFileTransformer; not sure. I don't seem to see these every time.)
1 parent 005ddc6 commit beb1432

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

build.gradle

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
buildscript {
55
// https://developer.android.com/kotlin/add-kotlin
66
ext.kotlin_version = '1.4.30'
7-
ext.kotlin_coroutines_version = '1.3.9'
7+
ext.kotlin_coroutines_version = '1.4.2'
88

99
dependencies {
1010
// 4.1.0+ requires Gradle 6.5:
@@ -29,9 +29,4 @@ allprojects {
2929
jcenter()
3030
mavenCentral()
3131
}
32-
33-
// Uncomment to display warnings about unchecked exceptions and deprecated APIs.
34-
//tasks.withType(JavaCompile) {
35-
// options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation"
36-
//}
3732
}

0 commit comments

Comments
 (0)