Benjamin Wong
Benjamin Wong

Reputation: 619

Errors in Gradle Sync [IntelliJ Idea 13.1]

I am running a Windows 8 machine and I wanted to have a go with Android development.

However, I am getting errors. The errors are as seen below:

Error Message

I dunno what I did wrong. Here are the configuration screens I used:

enter image description here

enter image description here

enter image description here

enter image description here

enter image description here

Here is my android SDK configuration:

enter image description here

Please let me know if you guys can point me to the right direction.

Upvotes: 0

Views: 139

Answers (1)

Scott Barta
Scott Barta

Reputation: 80010

There are incorrect versions of some of your libraries specified in one of your build.gradle files. Find the build file where those libraries are specified; it should be in your module's directory. Change the version number of the three dependencies it's throwing errors on to 20.0.+.

Upvotes: 1

Related Questions