마스터Q&A 안드로이드는 안드로이드 개발자들의 질문과 답변을 위한 지식 커뮤니티 사이트입니다. 안드로이드펍에서 운영하고 있습니다. [사용법, 운영진]

Gradle에서 support-compat, support-core-utils에서 에러가 납니다. [closed]

0 추천

안녕하세요. 

소스를 빌드하는 과정에서 Gradle쪽에support-compat, support-core-utils에서 에러가 납니다.

* What went wrong:
Could not resolve all files for configuration ':acuvue:debugCompileClasspath'.
> Could not find support-core-utils.aar (com.android.support:support-core-utils:26.1.0).
  Searched in the following locations:
      https://jcenter.bintray.com/com/android/support/support-core-utils/26.1.0/support-core-utils-26.1.0.aar
> Could not find support-compat.aar (com.android.support:support-compat:26.1.0).
  Searched in the following locations:
      https://jcenter.bintray.com/com/android/support/support-compat/26.1.0/support-compat-26.1.0.aar

소스는 아래와 같습니다.

implementation 'com.android.support:support-core-utils:26.1.0'
implementation 'com.android.support:support-compat:26.1.0'

기존에 문제없이 사용하고 있던 소스인데 갑자기 에러가 나타나서 당황 스럽네요.. 

위의 문제 해결방법 아시는 분은 답변 부탁드리겠습니다.

질문을 종료한 이유: 문제 해결했습니다.
덕이 (450 포인트) 님이 2019년 9월 30일 질문
덕이님이 2019년 9월 30일 closed
repositories {
        google()
        jcenter()
        maven { url "https://www.jitpack.io"}
        maven { url 'https://maven.google.com/'}
        mavenCentral()
        maven { url 'http://devrepo.kakao.com:8088/nexus/content/groups/public/' }
    }

google()을 맨위로 올려서 해결했습니다.
...