AndroidX를 사용을 하겠다면서 properties에는 그에 대한 표시를 안해주었기 때문에
오류가 발생한다.
gradle.properties에서
android.useAndroidX=true
이 한문장만 추가하면 오류가 해결된다.
Android P 이후 구글의 서포트 라이브러리들이 androidx를 사용하게 되었기 때문입니다.
해당 부분 오류는
gradle.properties 파일에 아래의 두줄을 추가 해 주면 해결됩니다.
android.useAndroidX=true
android.enableJetifier=true
그래도 오류가 계속해서 발생할때는 androidX로 import를 다시해주면 된다.
'Debug' 카테고리의 다른 글
Fragment 내부의 Button에 대해서는 onClick이 작동하지 않는다. (0) | 2020.07.11 |
---|---|
(HTTPLog)-Static: isSBSettingEnabled false (0) | 2020.07.11 |
Realm access from incorrect thread. Realm objects can only be accessed on the thread they were created. (0) | 2020.07.11 |
type arguments’ can only be used in a .ts file (0) | 2020.07.11 |
error: spawn cmd enoent (0) | 2020.07.11 |