Unable to resolve dependency for ':app@debug/compileClasspath': Could not resolve com.android.suppor

刚刚在Android Studio 3.0.1中出现

Unable to resolve dependency for ':app@debug/compileClasspath': Could not resolve com.android.support:appcompat-v7:26.1.0
1.第一种方式

无法正常编译,然后百度。可以使用

File->Settings->Build, Execution, Deployment->Gradle->取消选中 Offline work 按钮

Offline work字面意思是离线工作。
我们的依赖包需要在正常在线状态下更新下载。所以有可能是这个问题导致。

2. 第二种方式

添加下列代码到project下的build.gradle代码中

allprojects {
 repositories {
     jcenter()
     maven {
         url "https://maven.google.com" 
     }
     google()
 }}

当然也有其他的解决方式,欢迎提出。

你可能感兴趣的:(android,studio,Android,问题)