You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 21, 2020. It is now read-only.
./gradlew app:build correctly builds the Android native code.
Actual behaviour
FAILURE: Build failed with an exception.
* What went wrong:
Could not resolve all files for configuration ':react-native-audio:debugCompileClasspath'.
> Could not find com.android.support:appcompat-v7:${supportVersion}.
Required by:
project :react-native-audio
The culprit here seems to be the usage of single quotes in build.gradle, which will not substitute the variable ${supportVersion}. After converting the quotes to double quotes, the library compiles.
redexp, maleonix, anthonycaron, nikbelikov, nxhoang and 2 moreanthonycaron