fix r8 rules to avoid crash when downloading Emoji Font (#1312)

main
Konrad Pozniak 5 years ago committed by GitHub
parent 34d130f12f
commit e8c08dd48d
  1. 7
      app/proguard-rules.pro

@ -94,9 +94,10 @@
-dontwarn com.google.errorprone.annotations.*
# work around a bug in proguard
# see https://sourceforge.net/p/proguard/bugs/729/
-keepnames public interface com.uber.autodispose.lifecycle.CorrespondingEventsFunction { *; }
# without this emoji font downloading fails with AbstractMethodError
-keep class * extends android.os.AsyncTask {
public *;
}
# Glide
-keep public class * implements com.bumptech.glide.module.GlideModule

Loading…
Cancel
Save