FMOD crash in Android with Bad JNI version returned from JNI_OnLoad

the project works perfectly in debug mode. But when I run in release mode I get this error. How can I modify JNI_OnLoad of fmod.so such that it doesn’t return 28..

Process: com.taan.voice_changer, PID: 6958
java.lang.UnsatisfiedLinkError: Bad JNI version returned from JNI_OnLoad in “/data/app/~~ZVoYKRDR-Ey6-qwHkdipWg==/com.taan.voice_changer-JrA5fF75Q2V2gl8C3mzqTQ==/base.apk!/lib/arm64-v8a/libfmodL.so”: 28
at java.lang.Runtime.loadLibrary0(Runtime.java:1081)
at java.lang.Runtime.loadLibrary0(Runtime.java:1003)
at java.lang.System.loadLibrary(System.java:1765)
at com.taan.voice_changer.MainActivity.(SourceFile:10)
at java.lang.Class.newInstance(Native Method)
at android.app.AppComponentFactory.instantiateActivity(AppComponentFactory.java:95)
at android.app.Instrumentation.newActivity(Instrumentation.java:1448)
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:3941)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:4235)
at android.app.servertransaction.LaunchActivityItem.execute(LaunchActivityItem.java:112)
at android.app.servertransaction.TransactionExecutor.executeNonLifecycleItem(TransactionExecutor.java:174)
at android.app.servertransaction.TransactionExecutor.executeTransactionItems(TransactionExecutor.java:109)
at android.app.servertransaction.TransactionExecutor.execute(TransactionExecutor.java:81)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:2636)
at android.os.Handler.dispatchMessage(Handler.java:107)
at android.os.Looper.loopOnce(Looper.java:232)
at android.os.Looper.loop(Looper.java:317)
at android.app.ActivityThread.main(ActivityThread.java:8705)
at java.lang.reflect.Method.invoke(Native Method)
at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:580)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:886)
562-897 pid-562 Force finishing activity com.taan.voice_changer/.MainActivity
562-896 pid-562

I have not been able to reproduce this issue with a Release build using the latest version of the FMOD API. What version of FMOD and Java are you using? Our minimum JNI version is 1.6, which is Java SE 7, and should be backwards compatible with newer Java versions, but if you are on anything older than Java SE 7 that might cause problems.

found out the problem were due to in release mode were not found org.fmod.AudioDevices by log of FmodL library. Then after defining proguard rules the issue were resolved. Thank you for your support