Error:Failed to resolve: com.android.support:recyclerview-v7:26.1.0
1362 단어 Android 문제 모음
Error:Failed to resolve: com.android.support:recyclerview-v7:26.1.0
즉시 build를 확인하십시오.gradle,recyclerview-v7:26.1.0에 의존하는 것을 보지 못했습니다. 좌우로 한 번 훑어보았지만 26버전에 관한 어떤 문제도 발견하지 못했습니다. 석유 제3자 창고 버전이 26의 가방을 도입했습니다. 문제가 어떻게 해결되었는지 바로 추측했습니다.
Starting from version 26 of support libraries make sure that the repositories section includes a maven section with the "https://maven.google.com" endpoint.
프로젝트에서 빌드합니다.gradle
allprojects {
repositories {
maven { url "https://maven.google.com" }
jcenter()
}
}
참조:https://stackoverflow.com/questions/45103230/failed-to-resolve-com-android-supportcardview-v726-0-0-android/45103707