我的系统突然关闭,我打开它,我得到错误:无法解决:android.arch.core:常见:我的android工作室1.1.0错误.我尝试过清理和重建项目,但它没有用.我在互联网上进行了研究,但没有一个能解决我的问题.
建立.gradle这个(项目)
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
maven {
url 'https://jitpack.io'
}
maven {
url "https://maven.google.com"
}
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
Run Code Online (Sandbox Code Playgroud)
的build.gradle(APP)
apply plugin: 'com.android.application'
android {
compileSdkVersion 27
buildToolsVersion "27.0.1" …Run Code Online (Sandbox Code Playgroud)