From 6cc3f953cebd6cb4c50c4c0268dda407079b0020 Mon Sep 17 00:00:00 2001 From: Prathamesh More Date: Wed, 22 Dec 2021 15:22:14 +0530 Subject: [PATCH] Fixed NoSuchMethodException because of Proguard removing the method, which caused errors in reading tags, audioHeader of m4a files --- app/proguard-rules.pro | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/proguard-rules.pro b/app/proguard-rules.pro index 20ae13488..cba828f61 100644 --- a/app/proguard-rules.pro +++ b/app/proguard-rules.pro @@ -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