10 lines
485 B
Prolog
Executable File
10 lines
485 B
Prolog
Executable File
# ButterKnife config start
|
|
# Retain generated class which implement Unbinder.
|
|
-keep public class * implements butterknife.Unbinder { public <init>(...); }
|
|
|
|
# Prevent obfuscation of types which use ButterKnife annotations since the simple name
|
|
# is used to reflectively look up the generated ViewBinding.
|
|
-keep class butterknife.*
|
|
-keepclasseswithmembernames class * { @butterknife.* <methods>; }
|
|
-keepclasseswithmembernames class * { @butterknife.* <fields>; }
|
|
# ButterKnife config end |