#android #maven #android-studio #build #android-gradle-plugin
#Android #maven #android-studio #сборка #android-gradle-plugin
Вопрос:
Error:Could not find com.android.tools.build:gradle:2.2.0.
Searched in the following locations:
https://repo1.maven.org/maven2/com/android/tools/build/gradle/2.2.0/gradle-2.2.0.pom
https://repo1.maven.org/maven2/com/android/tools/build/gradle/2.2.0/gradle-2.2.0.jar
Required by:
HapiKey Project:camera:unspecified
Ответ №1:
Добавьте jcenter в свои репозитории в build.gradle на уровне проекта
buildscript {
repositories {
jcenter()
}
// ...
}