투케이2K

140. (TWOK/ERROR) [Android] 빌드 에러 - app:compileDebugKotlin .. following classes cannot be resolved 본문

투케이2K 에러관리

140. (TWOK/ERROR) [Android] 빌드 에러 - app:compileDebugKotlin .. following classes cannot be resolved

투케이2K 2023. 1. 17. 20:32

[환경 설정 및 설명]

프로그램 : AndroidStudio

설 명 : 빌드 에러 - app:compileDebugKotlin Supertypes of the following classes cannot be resolved. Please make sure you have the required dependencies in the classpath: unresolved supertypes: HttpClient

 

[에러 원인]

1. 프로젝트 빌드 시 라이브러리 의존성 충돌 이슈 발생

app:compileDebugKotlin Supertypes of the following classes cannot be resolved. 
Please make sure you have the required dependencies in the classpath: unresolved supertypes: HttpClient
 

[해결 방법]

[방법] : [1] : build.gradle 파일 라이브러리 동기화 재수행 >> 캐시 초기화 >> 프로젝트 다시 시작

[방법] : [2] : build.gradle 파일에서 의존성 부여 순서 변경 실시 (코틀린 라이브러리 의존성 부여 코드 최상단으로 이동)

 

dependencies {

    // TODO [코틀린 라이브러리 최상단으로 이동]
    implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"


    // TODO [기타 라이브러리 및 의존성 부여 실시]
    implementation files('libs/httpclient-4.3.2.jar')
}

 

반응형
Comments