简体   繁体   中英

Unresolved dependencies error in IntelliJ IDEA

So i just started working with IntelliJ and created my first project, but i get this error in the Messages make

在此处输入图片说明

and this in the Event log

在此处输入图片说明

this is the content of my my build.gradle file

在此处输入图片说明

Can someone please help?

Try this in your Gradle build file:

dependencies {
  compile 'com.android.support:appcompat-v7:18.0.+'
}

Your one dependency (of the form groupId:artifactId:version ) is not quite right. You have the version listed as just + . Instead, it needs to be 18.0.+ , which specifies a release version of 18.0.0 or greater.

See here for details.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM