- What went wrong:
A problem occurred configuring project ':react-native-vector-icons'.
Could not resolve all files for configuration ':react-native-vector-icons:classpath'. Could not find any matches for com.android.tools.build:gradle:2.3.+ as no versions of com.android.tools.build:gradle are available. Searched in the following locations: https://jcenter.bintray.com/com/android/tools/build/gradle/maven-metadata.xml https://jcenter.bintray.com/com/android/tools/build/gradle/ Required by: project :react-native-vector-icons
Asked
Active
Viewed 950 times
0

shizhen
- 12,251
- 9
- 52
- 88

Suresh Tamang
- 42
- 1
- 9
-
Upgrade to react-native-vector-icons 4.6.1 – Milore Dec 11 '18 at 14:07
-
Possible duplicate of [react native vector icons](https://stackoverflow.com/questions/53712552/react-native-vector-icons) – Mukeyii Dec 11 '18 at 14:44
2 Answers
0
Try below workaround
subprojects {
if (project.name.contains('react-native-vector-icons')) {
buildscript {
repositories {
jcenter()
maven { url "https://dl.bintray.com/android/android-tools/" }
}
}
}
}

shizhen
- 12,251
- 9
- 52
- 88
0
you should try again today as the jCenter services were taken down due to some miscommunication. Now all the packages are restored.

Cadis
- 35
- 5