Мой проект Android Studio не загружается, это проблема:
Не удалось найти com.android.tools.build:gradle:3.0.1.Поиск в следующих местах: https://jcenter.bintray.com/com/android/tools/build/gradle/3.0.1/gradle-3.0.1.pom https://jcenter.bintray.com/com/android/tools/build/gradle/3.0.1/gradle-3.0.1.jar
И мой build.gradle:
buildscript { repositories { jcenter() } dependencies { classpath 'com.android.tools.build:gradle:3.0.1' // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files } } allprojects { repositories { jcenter() } } task clean(type: Delete) { delete rootProject.buildDir }
пожалуйста, помогите, спасибо
Попробуйте заменить jcenter() на google() в репозиториях и блоки всех проектов-> репозиториев в build.gradle
jcenter()
google()