개발/Android
[Android] Cannot query the value of property 'namespace' because configuration of project ':app' has not completed yet.
blacktree
2024. 8. 5. 15:18
반응형
안드로이드 targetSdkVersion을 올리고 AAPT2 Error를 해결하고 나니 또 에러가 발생하였다.
- 에러 내용
- Cannot query the value of property 'namespace' because configuration of project ':app' has not completed yet.
- 해결방법
- 프로젝트의 build.gradle로 이동
- buildscript { ext.kotlin_version = '1.7.10'
}
- 필자의 경우
- ext.kotlin_version를 1.3.17 -> 1.7.10으로 수정하고 필드하여 에러 수정
- 이어서 아래와 같은 에러 발생시
- Android Gradle plugin requires java 11 to run. you are currently using java 1.8
- 아래 링크로 참조해주세요.
728x90
반응형