투케이2K

288. (TWOK/ERROR) [Android] Cannot find selected module (99) for constraint debugCompileClasspath 본문

투케이2K 에러관리

288. (TWOK/ERROR) [Android] Cannot find selected module (99) for constraint debugCompileClasspath

투케이2K 2024. 12. 20. 11:58

[환경 설정 및 설명]

프로그램 : AndroidStudio

설 명 : [Android] Cannot find selected module (99) for constraint debugCompileClasspath

 

[설 명]

 

--------------------------------------------------------------------------
[에러 원인]
--------------------------------------------------------------------------

1. 라이브러리 빌드 수행 시 명확하지 않은 라이브러리 버전 지정 및 Maven 에서 해당 라이브러리를 찾을 수 없을 경우 발생하는 이슈

  >> 명확하지 않은 라이브러리 버전 명칭 : implementation 'com.google.firebase:firebase-messaging:20.1.+'


2. 전체 에러 발생 로그 : 

Corrupt serialized resolution result. Cannot find selected module (99) for constraint debugCompileClasspath -> com.google.firebase:firebase-messaging:{strictly 23.0.0}

--------------------------------------------------------------------------





--------------------------------------------------------------------------
[해결 방법]
--------------------------------------------------------------------------

1. 안드로이드 build.gradle 에서 라이브러리 의존성 부여 시 명확한 명칭 지정 및 라이브러리를 찾을 수 없는 경우 다른 버전으로 변경 수행

  >> 명확하게 지정한 라이브러리 버전 : implementation 'com.google.firebase:firebase-messaging:20.1.0'

--------------------------------------------------------------------------





--------------------------------------------------------------------------
[참고 사이트]
--------------------------------------------------------------------------

https://stackoverflow.com/questions/51839721/the-library-com-google-firebasefirebase-iid-is-being-requested-by-various-other

--------------------------------------------------------------------------
​

 

반응형
Comments