Failed to resolve: com.android.support:appcompat-v7:26.0.0

后端 未结 14 1866
旧时难觅i
旧时难觅i 2020-11-22 05:56

I am having this issue in Android studio.

Error:(22, 13) Failed to resolve: com.android.support:appcompat-v7:26.0.0
Install         


        
14条回答
  •  忘掉有多难
    2020-11-22 06:41

    1. Add this in build.gradle(Project:projectname)

      allprojects {
        repositories {
          jcenter()
          maven { url "https://maven.google.com" }
        }
      }
      
    2. Add this in build.gradle(Module:app)

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

提交回复
热议问题