r8 is finishing with an error: `Error: Attribute S...
# android
d
r8 is finishing with an error:
Error: Attribute Signature requires InnerClasses attribute. Check -keepattributes directive.
What could cause this?
s
From my experience, usually
-keepattributes Signature
is used with
-keepattributes InnerClasses
I’ve googled and found out this: https://stackoverflow.com/questions/52252806/android-build-error-attribute-signature-requires-innerclasses-attribute-check
d
Thanks, that worked!