Gradle의 FAQ
1399 단어 학습 총결산
gradle/wrapper/gradle-wrapper.properties
의 버전을 바꾸라고 합니다. 오늘은 바꾸지 않아도 되는 방식을 제공합니다Error: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 sync failed: error in opening zip file (15 ms)
Syncing only active variant
You can disable this experimental feature from
File → Settings → Experimental → Gradle → Only sync the active variant
원인: 예를 들어 나의
gradle-wrapper.properties
는 이렇다. 일반적으로 오류를 보고하는 것은 모두 너의 로컬gradle-5.1.1의 가방에 문제가 있기 때문이다. 아마도 네트워크가 좋지 않았을 것이다. 지난번에 업데이트한 다운로드는 완전히 다운로드되지 않았다.distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-5.1.1-all.zip
해결 방법: 당신의 컴퓨터에 있는
.gradle
를 찾아서 데몬에 들어가서 wrapper/dists
에서 5.1.1글자가 있는 파일을 삭제하고 as로 돌아가서 다시 컴파일해서 다운로드하면 됩니다. 클릭Re-download dependencies and sync project (requires network)
을 눌러서 다시 다운로드해도 됩니다.mac의
.gradle
파일은 user/.gradle
안에 있으며,command +shift +를 사용할 수 있습니다.숨겨진 파일을 표시합니다.