• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# This is a configuration file for ProGuard.
2# http://proguard.sourceforge.net/index.html#manual/usage.html
3
4# Keep classes that may be inflated from XML.
5-keepclasseswithmembers class * {
6    public <init>(android.content.Context, android.util.AttributeSet);
7}
8-keepclasseswithmembers class * {
9    public <init>(android.content.Context, android.util.AttributeSet, int);
10}
11
12# Keep annotated classes or class members.
13-keep @androidx.annotation.Keep class *
14-keepclassmembers class * {
15    @androidx.annotation.Keep *;
16}
17