Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the correct ProGuard definition for latest mp4parser/isoparser library?

I've been struggling with that here and there -

What is the proguard definitions you need to add to your project proguard configuration file to allow the mp4parser library to work?

like image 591
Nati Dykstein Avatar asked Sep 17 '15 16:09

Nati Dykstein


1 Answers

Tested with mp4parser version 1.1.7:

-keep class * implements com.coremedia.iso.boxes.Box { *; }
-dontwarn com.coremedia.iso.boxes.**
-dontwarn com.googlecode.mp4parser.authoring.tracks.mjpeg.**
-dontwarn com.googlecode.mp4parser.authoring.tracks.ttml.**

Enjoy

like image 127
Nati Dykstein Avatar answered Nov 21 '22 15:11

Nati Dykstein