Fixed NoSuchMethodException because of Proguard removing the method, which caused errors in reading tags, audioHeader of m4a files

This commit is contained in:
Prathamesh More 2021-12-22 15:22:14 +05:30
parent 7e0dc0c309
commit 6cc3f953ce

View file

@ -49,8 +49,11 @@
#-dontwarn
#-ignorewarnings
#Jaudiotagger
-dontwarn org.jaudiotagger.**
-dontwarn org.jcodec.**
-keep class org.jaudiotagger.** { *; }
-keep class org.jcodec.** { *; }
-keepclassmembers enum * { *; }
-keepattributes *Annotation*, Signature, Exception