欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

AS:Failed to open zip file.Re-download dependencies and sync project (requires network)

程序员文章站 2022-05-31 16:14:32
...

用AS新建项目进行编译,会出现如下的错误提示:

AS:Failed to open zip file.Re-download dependencies and sync project (requires network)

Failed to open zip file.
Gradle's dependency cache may be corrupt (this sometimes occurs after a network connection timeout.)
Re-download dependencies and sync project (requires network)
Re-download dependencies and sync project (requires network)

处理步骤如下:

步骤一:

修改gradle-wrapper.properties的distributionUrl,将https改为http。

distributionUrl=http\://services.gradle.org/distributions/gradle-4.9-all.zip

修改后进行编译,若有出现步骤二的错误,则继续执行。

可能会出现的问题:

若出现如下错误,请执行步骤二。

错误:app\build\intermediates\incremental\mergeDebugResources\merged.dir\values-v28\values-v28.xml:7: error: resource android:attr/dialogCornerRadius not found.

AS:Failed to open zip file.Re-download dependencies and sync project (requires network)

步骤二:

1. 修改gradle.properties中的如下两项为false。创建项目时,默认是使用了androidx兼容包

android.useAndroidX=false
android.enableJetifier=false

2. 删除app/build.gradle如下的androidx包,改为implementation 'com.android.support:appcompat-v7:26.1.0'

//implementation 'androidx.appcompat:appcompat:1.0.0-beta01'
implementation 'com.android.support:appcompat-v7:26.1.0'

步骤三:

1.将布局文件的androidx.constraintlayout.widget.ConstraintLayout节点改为其他布局节点。

2.将MainActivity所继承的AppCompatActivity改为v7中的。

//import androidx.appcompat.app.AppCompatActivity;
import android.support.v7.app.AppCompatActivity;

完成以上,就能编译成功了,至于使用androidx包的修复情况待研究。