The app has dependency on library, which has class members with
@SuppressWarnings("unused")
annotation. When I made use of proguard-rules.pro by,
minifyEnabled true
in gradle file, the members with above annotations are not found at runtime, with
NoSuchFieldError error.
How to keep those members from that library package, with annotation
@SuppressWarnings("unused")
, through
"proguard-rules.pro"