Author Topic: [BASS for android issue] After apply effect and mix chanels, how to save to file  (Read 18377 times)

Ian @ un4seen

  • Administrator
  • Posts: 26015
Do you have any obfuscation enabled in your app's release build? If so, does disabling that avoid the crash? If it does, does excluding only the BASS classes also avoid it? Something like this...

   www.un4seen.com/forum/?topic=13225.msg96664#msg96664

Wael Adel

  • Guest
yes i have proguard to obfuscate my code, when i dispite it bass works fine.

i added this line to my proguard as rai2270 suggested and everyhing is okay now.

-keep class com.un4seen.bass.** {
  public protected private *;
}

thanks