Joaquin Iurchuk
Joaquin Iurchuk

Reputation: 5637

Gradle sync failed: support-core-utils

I'm dealing with Android project sync.

The error I get is always the same:

Failed to resolve: support-core-utils

Failed to resolve: support-compat

Currently, my repositories are:

maven { url 'https://dl.bintray.com/android/android-tools/' }
maven { url 'https://dl.bintray.com/firebase/gradle/' }
maven { url "https://jitpack.io" }
google()
jcenter {url 'https://firebase.bintray.com/gradle'}

Any suggestion?

Thanks!

Upvotes: 1

Views: 125

Answers (1)

Radesh
Radesh

Reputation: 13585

try to move google() to top of others like this

google()
maven { url 'https://dl.bintray.com/android/android-tools/' }
maven { url 'https://dl.bintray.com/firebase/gradle/' }
maven { url "https://jitpack.io" }
jcenter {url 'https://firebase.bintray.com/gradle'}

Upvotes: 2

Related Questions