react-native-file-selector
react-native-file-selector copied to clipboard
Could not resolve all files for configuration ':app:debugCompileClasspath'
E:\Projects\APP\YDJW>react-native --version react-native-cli: 2.0.1 react-native: 0.59.1
Task :app:preDebugBuild FAILED
FAILURE: Build failed with an exception.
- What went wrong: Could not resolve all files for configuration ':app:debugCompileClasspath'.
Could not find com.nbsp:library:1.8. Required by: project :app > project :react-native-file-selector
解决了吗?
I had the same issue:
**
Could not resolve all files for configuration ':app:debugCompileClasspath'. Could not find com.nbsp:library:1.8. **
I resolve that by adding :
maven { url "http://dl.bintray.com/lukaville/maven" }
like this:
repositories { mavenLocal() jcenter() maven { url "https://maven.google.com" } maven { url "http://dl.bintray.com/lukaville/maven" } ... }
Hope, It will work for you too.
mavenLocal
where is that file?