개발/Android Studio 에러

에러:

Gradle's dependency cache may be corrupt (this sometimes occurs after a network connection timeout.)

Re-download dependencies and sync project (requires network)
The state of a Gradle build process (daemon) may be corrupt.

스몰스테핑 2024. 10. 23. 21:32

Unable to find method ''void org.gradle.api.internal.DefaultDomainObjectSet.<init>(java.lang.Class)''
'void org.gradle.api.internal.DefaultDomainObjectSet.<init>(java.lang.Class)'

Gradle's dependency cache may be corrupt (this sometimes occurs after a network connection timeout.)

Re-download dependencies and sync project (requires network)
The state of a Gradle build process (daemon) may be corrupt. Stopping all Gradle daemons may solve this problem.

Stop Gradle build processes (requires restart)
Your project may be using a third-party plugin which is not compatible with the other plugins in the project or the version of Gradle requested by the project.
In the case of corrupt Gradle processes, you can also try closing the IDE and then killing all Java processes.

 

(Mac OS에서 작업 중 생긴 일)

 

Gradle 관련 문제이다.

gradle cleanBuildCache // 터미널에 입력
download dependencies and sync project // 빌드 실패 후 뜨는 에러창에서 클릭 가능

 

위와 같이 순차적으로 해보라는 답변을 받았다.

터미널에서 gradle을 못 찾길래 brew를 사용해 gradle을 설치해주었다.

brew install gradle

 

이후 위 과정을 다시 진행했을때

gradle cleanBuildCache를 실행 후 다음과 같은 에러가 발생하였다.

 

https://small-stepping.tistory.com/1214

 

에러: Deprecated Gradle features were used in this build, making it incompatible with Gradle 9.0.

You can use '--warning-

A problem occurred evaluating project ':app'.
> Failed to apply plugin 'com.android.internal.application'.
   > Could not create an instance of type com.android.build.gradle.internal.dsl.BaseAppModuleExtension.
      > Could not create an inst

small-stepping.tistory.com

 

어찌되었든 gradle과 플러그인 버전 호환의 문제이다.

 

1. build.gradle의 dependencies { classpath 'com.android.tools.build:gradle:버전' }

2. gradle\wrapper\gradle-wrapper.properties의 distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip

위 두개를 아래 링크, 이미지를 참고해서 변경해보자.

 

다음 링크를 참고해보자.

https://developer.android.com/build/releases/gradle-plugin?hl=ko#updating-gradle

 

Android Gradle 플러그인 8.6 출시 노트  |  Android Studio  |  Android Developers

Android 스튜디오 빌드 시스템은 Gradle을 기반으로 하며 Android Gradle 플러그인에는 Android 앱을 빌드하는 데 사용하는 몇 가지 추가 기능이 있습니다.

developer.android.com