Could not find common.jar (android.arch.core:common:1.0.0). Searched in the following locations:

1110 단어 Android오보
Could not find com을 해결합니다.android.tools.build:gradle:3.0.1 이 문제, 즉 방금 쓴 블로그 이후에 Could not find com이 생겼습니다.android.tools.build:gradle:3.0.1 문제, 사실 해결 방법도 간단합니다. 아래와 같습니다.
// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
    repositories {
        google()//     
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.0.1'

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        google()//     
        jcenter()
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

중국어 주석에 구글 () 을 추가하면 되지만, 구글 () 은 맨 위에 있어야 합니다.

좋은 웹페이지 즐겨찾기