我正在尝试从GitHub导入该项目,但由于显示错误而无法显示
“重新下载依赖项并同步项目; Gradle的依赖项缓存 可能已损坏”,
Project Link(Udacity)-here ,Gradle中的代码(Android Studio):
android {
compileSdkVersion 23
buildToolsVersion "23.0.2"
defaultConfig {
applicationId "com.example.android.quakereport"
minSdkVersion 15
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.3.0'
}
有人有什么主意吗?