외부 라이브러리 가 androidx를 사용하거나 support 라이브러리를 사용 하는경우 둘이 충돌 날 수 있다.
해결방법은 androidx 또는 support 라이브러리로 맞춰주는 방법인데 라이브러리 수정이 불가능 한 경우 gradle.properties 에 옵션을 설정함으로 해결 할 수 있다.
gradle.properties 에 아래 두줄을 추가하면 해결
android.useAndroidX=true
android.enableJetifier=true
2줄 추가 후에도 해결되지 않는 경우 프로젝트 gradle 의 버전을 올려보자.
'Development > Android' 카테고리의 다른 글
IllegalArgumentException FLAG_IMMUTABLE or FLAG_MUTABLE (0) | 2022.02.17 |
---|---|
Android12 APK 설치 불가 현상 (0) | 2022.02.17 |
GPGS 로그인 시 IllegalStateException 발생 문제 (0) | 2019.02.25 |
GPGS IllegalStateException: A fatal developer error has occurred. 발생 시 (0) | 2018.09.11 |
구글 플레이 게임 서비스 세이브드 게임 저장 / 불러오기 실패 error 4005 (0) | 2017.03.22 |