valentinbrad-wolfpack
valentinbrad-wolfpack
So Byte Buddy library doesn't fully support obfuscation, for now, and I will have to choose which one to keep
Yes, I am using the version: '1.12.8'. I will keep trying to add different rules for Proguard, maybe I will find one that will work. Thanks for your time.
After many attempts, I found out that adding this line in proguard-rules.pro file prevents that crash ``` -keep class com.android.dx.dex.cf.** { ; }
> Nice job @valentinbrad-wolfpack, I also found a solution, more specifically > > `-keepclassmembers class com.android.dx.dex.cf.CfTranslator { public static *** translate(...); }` I agree, this solution is much better, thanks...
Hello, did anyone find a fix for this issue, by chance? It still gets stuck if you do something like this: ``` ExoPlayer player = new ExoPlayer.Builder(context).build(); player.setMediaItem(...); player.setVideoEffects(effectList1); player.prepare();...