-
Notifications
You must be signed in to change notification settings - Fork 411
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Proguard causes NoSuchMethodException
#4
Comments
Yeah, I'll do this today. Thanks for your feedback. (SORRY FOR MY LATE REPLY). :-D |
Thanks @daimajia! |
I've encountered exactly the same issue today.
The source of the problem is that constructors are called indirectly. This rule prevents proguard from removing constructors instead of forcing it to keep everything. |
Thank you so much @ultimate-deej! You saved my day! |
Thanks, @ultimate-deej ! |
Hey! Just want to say first that I really appreciate your work.
I'm using this library in an application and found a bug when using proguard. Without any changes to the
proguard.project.txt
file, I get this error when trying to use the animations:I worked around this by adding to my
proguard-project.txt
file:It might be helpful to add this to documentation (like the README).
The text was updated successfully, but these errors were encountered: