当我打开Project时会出错:
错误:无法打开zip文件。 Gradle的依赖缓存可能是 损坏(这有时会在网络连接超时后发生。) 重新下载依赖项和同步项目(需要网络)
但不适合我。
这是我的 build.gradle 文件:
apply plugin: 'com.android.application'
android {
compileSdkVersion 26
buildToolsVersion "26.0.2"
defaultConfig {
applicationId "com.example.web"
minSdkVersion 18
targetSdkVersion 26
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
productFlavors {
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:26.0.1'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
}
allprojects {
repositories {
jcenter()
maven {
url 'https://maven.google.com'
}
maven { url "https://jitpack.io" }
}
顶级构建文件(项目级别)
// 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.3.3'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
flatDir {
dirs "${rootDir}/libs"
}
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
答案 0 :(得分:1)
关闭Android Studio。
- 下载Gradle 3.3二进制文件
从https://services.gradle.org/distributions/gradle-3.3-bin.zip
将下载的zip文件解压缩到gradle文件夹:
C:\Users\user-name\.gradle\wrapper\dists\
现在打开Android Studio,转到文件 - > 设置 - > 构建,执行,部署 - > Gradle 并将 Gradle Home 设置为gradle-3.3和SYNC文件夹。
关闭Android Studio。
并删除此目录下的所有文件:
C:\Users\user-name\.gradle\wrapper\dists\
现在打开Android Studio,将自动下载必要的文件。
答案 1 :(得分:1)
前一段时间我也遇到过同样的问题,我找到了简单的解决方法。
File ->Invalidate Caches/ Restart -> Select Invalidate and Restart option.
它将清除所有本地历史记录并自动重启。将自动下载所有必需的文件。
答案 2 :(得分:1)
我也有同样的问题。试试这个:
Tools--> Android--> Sync Project With Gradle Files
这对我有用。
答案 3 :(得分:0)
首先关闭android studio 然后从/ dist文件夹中删除所有文件
** C:\ Users \ username.gradle \ wrapper \ dists **
基本上,该文件夹包含gradle
之后,打开android studio。清除项目并进行构建。