npm install react-native-sound --save
react-native link react-native-sound
react-native run-android

Help, please 馃槩
I found a relate issue https://github.com/zmxv/react-native-sound/issues/379 But it is not the same error
I got the same issue. I managed to get passed it by manually linking it by following the instructions in https://github.com/zmxv/react-native-sound/wiki/Installation
For me, the android/app/build.gradle didn't have the compile dependency.
i.e. this step:
Edit android/app/build.gradle to declare the project dependency:
dependencies {
...
compile project(':react-native-sound')
}
@SNVID thanks you! it works!
Most helpful comment
I got the same issue. I managed to get passed it by manually linking it by following the instructions in https://github.com/zmxv/react-native-sound/wiki/Installation
For me, the android/app/build.gradle didn't have the compile dependency.
i.e. this step:
Edit android/app/build.gradle to declare the project dependency: