From 0e4089ef8e658097cf3b695a62a344c828bfefae Mon Sep 17 00:00:00 2001 From: Mikhail Glukhikh Date: Thu, 3 Aug 2017 12:25:11 +0300 Subject: [PATCH] Keep coroutines classes in ProGuard #KT-19433 In Progress --- compiler/compiler.pro | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/compiler/compiler.pro b/compiler/compiler.pro index 9ac53d32f8d..230e3c247b0 100644 --- a/compiler/compiler.pro +++ b/compiler/compiler.pro @@ -204,4 +204,7 @@ messages/**) # for tools.jar -keep class com.sun.tools.javac.** { *; } --keep class com.sun.source.** { *; } \ No newline at end of file +-keep class com.sun.source.** { *; } + +# for coroutines +-keep class kotlinx.coroutines.** { *; } \ No newline at end of file