Gradle build failed - unable to unzip

爷,独闯天下 提交于 2019-12-03 12:45:33

You need the clear the build cache. Select View > Tool Windows > Terminal from the menu bar and use one of the following commands:

On Windows: gradlew cleanBuildCache

I had the same problem, The answer is there : https://developer.android.com/studio/build/build-cache.html?utm_source=android-studio#clear_the_build_cache

You have just to do in a Terminal (for have terminal : Select View > Tool Windows > Terminal) :

On Windows:

gradlew cleanBuildCache

On Mac or Linux:

./gradlew cleanBuildCache

And build Gradle

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!