react-native-view-overflow
react-native-view-overflow copied to clipboard
A problem occurred configuring project ':react-native-view-overflow'.
A problem occurred configuring project ':react-native-view-overflow'.
Could not resolve all files for configuration ':react-native-view-overflow:classpath'. Could not find manifest-merger.jar (com.android.tools.build:manifest-merger:26.1.0). Searched in the following locations: https://jcenter.bintray.com/com/android/tools/build/manifest-merger/26.1.0/manifest-merger-26.1.0.jar Could not find ddmlib.jar (com.android.tools.ddms:ddmlib:26.1.0). Searched in the following locations: https://jcenter.bintray.com/com/android/tools/ddms/ddmlib/26.1.0/ddmlib-26.1.0.jar Could not find dvlib.jar (com.android.tools:dvlib:26.1.0). Searched in the following locations: https://jcenter.bintray.com/com/android/tools/dvlib/26.1.0/dvlib-26.1.0.jar Could not find common.jar (com.android.tools:common:26.1.0). Searched in the following locations: https://jcenter.bintray.com/com/android/tools/common/26.1.0/common-26.1.0.jar
Recheck your linking
If you could please elaborate a little.
try to run react-native link again
I think the link part is wrong
I have, it has been linked successfully but still the problem is same.
I fixed this by adding this to android/build.gradle
subprojects { project ->
if (project.name.contains('react-native-view-overflow')) {
buildscript {
repositories {
maven { url "https://maven.google.com" }
}
}
}
}
@junocs does it makes sense to add this info to docs?