The IJKPlayer introduced in the project plays as a video

Debug was found running without any problem. Packaged Release Android APK, errors were reported during operation. The reason is that the plug-in forgets to ignore obfuscation and just needs to add obfuscation configuration

Add in the proGuard file

-keep class tv.danmaku.ijk.media.player.** {
*;
}
Copy the code