Hi everybody
react-native-sound do not work when I set enableProguardInReleaseBuilds = true.
What commands do I need to enter in proguard-rules.pro until my problem is resolved.
@ali226281 did you find any solution? I'm having the same issue
Unfortunately no
@ali226281 thanks for the quick reply, one question did you change to another library or just native code?
I will be trying out this comment from another ticket in the project:
https://github.com/zmxv/react-native-sound/issues/601#issuecomment-514550097
I will keep you guys up to date if it fixes this issue.

Stumble upon this as well, seems like the raw folder is stripped by default.
add
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools"
tools:keep="@raw/*"
/>
in
app/src/main/res/raw/keep.xml
It cost us a day of deep investigation. Thank you!
Most helpful comment
add
in
app/src/main/res/raw/keep.xml