From 9f6ee0a8f33d26ed5843c53a8fa18a34e7c07624 Mon Sep 17 00:00:00 2001 From: Will Hawkins Date: Tue, 21 May 2019 20:47:00 -0400 Subject: [PATCH] [fenix] Fix https://github.com/mozilla-mobile/fenix/issues/2612: Force PG to keep kotlinx coroutines --- app/proguard-rules.pro | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/proguard-rules.pro b/app/proguard-rules.pro index 0b79469b8..9b013d01c 100644 --- a/app/proguard-rules.pro +++ b/app/proguard-rules.pro @@ -30,8 +30,8 @@ # Kotlinx #################################################################################################### --keepnames class kotlinx.coroutines.internal.MainDispatcherFactory {} --keepnames class kotlinx.coroutines.CoroutineExceptionHandler {} +-keep class kotlinx.coroutines.internal.MainDispatcherFactory {} +-keep class kotlinx.coroutines.CoroutineExceptionHandler {} -keepclassmembernames class kotlinx.** { volatile ; }