Notice
Recent Posts
Recent Comments
Link
투케이2K
202. (TWOK/ERROR) [Android] 라이브러리 모듈 로드시 Could not resolve project project :app 이슈 본문
투케이2K 에러관리
202. (TWOK/ERROR) [Android] 라이브러리 모듈 로드시 Could not resolve project project :app 이슈
투케이2K 2023. 12. 8. 09:43[환경 설정 및 설명]
프로그램 : AndroidStudio
설 명 : [Android] 라이브러리 모듈 로드시 Could not resolve project project :app 이슈
[에러 로그]
Could not determine the dependencies of task ':app:compileDebugJavaWithJavac'.
> Could not resolve all task dependencies for configuration ':app:debugCompileClasspath'.
> Could not resolve project :ModuleCLib.
Required by:
project :app
> No matching configuration of project :MifareCLib was found. The consumer was configured to find an API of a component, preferably optimized for Android, as well as attribute 'com.android.build.api.attributes.BuildTypeAttr' with value 'debug', attribute 'com.android.build.api.attributes.AgpVersionAttr' with value '7.3.1', attribute 'org.jetbrains.kotlin.platform.type' with value 'androidJvm' but:
- None of the consumable configurations have attributes.
* Try:
> Run with --stacktrace option to get the stack trace.
> Run with --info or --debug option to get more log output.
> Run with --scan to get full insights.
[에러 원인]
1. Build.gradle 파일과 setting.gradle 파일에는 정상적으로 implement , include 로 모듈이 포함되어 있지만,
안드로이드 프로젝트에서 상단 메뉴 project 변경 >> 모듈 확인 시 프로젝트에 모듈이 빠져있어 발생하는 이슈
[해결 방법]
1. 모듈 라이브러리를 안드로이드 프로젝트에 추가 실시
>> project > 프로젝트 내에 모듈 추가
2. build.gradle 파일과 setting.gradle 파일에서 정상적으로 implement , include 모듈이 포함된 것 확인
3. 안드로이드 프로젝트 clean 프로젝트
4. 안드로이드 rebuild 프로젝트 수행
반응형
'투케이2K 에러관리' 카테고리의 다른 글
Comments