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
어찌되었든 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 Studio 에러' 카테고리의 다른 글
포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!