본문 바로가기

노력을 이기는 재능은 없고
노력을 외면하는 결과도 없다.
- 이창호 9단

E R R O R/Android Error

[Android Error] This project uses AndriodX dependencies, but the 'android.useAndroidx' property is not enabled. Set this property to true in the gradle.properties file and retry. 에러 해결방법

  Junesker   2022. 2. 17.
반응형

This project uses AndriodX dependencies, but the 'android.useAndroidx' property is not enabled. Set this property to true in the gradle.properties file and retry 에러

안드로이드 App 프로젝트 빌드를 진행중에 에러가 발생했다. 영어로 된 에러 내용이 길게 출력되었다. 이건 무슨에러인가(?) 우선 정확한 내용을 모르니 읽어나보자. AndroidX를 사용하는데 관련 사용 여부 설정 이런게 등록이 안되어 있는건가? 잘 모르니 여러가지로 찾아보고 적용해보자.

 

 

 

 

 

This project uses AndriodX dependencies, but the 'android.useAndroidx' property is not enabled. Set this property to true in the gradle.properties file and retry. 에러 해결방법

 

 

 

 

 

해당 에러는 AndroidX를 enable시켜주지 않아서 발생하는 에러로, gradle.properties파일내에 설정을 진행해주면 됩니다. gradle.properties파일을 열고 적용을 해보자. 만약, gradle.properties파일이 없다면 properties파일을 새롭게 생성하자.

 

 

 

 

 

1.  Gradle Scripts안에 gradle.properties 파일을 열어줍니다.

 

gradle.properties 파일

gradle.properties파일이 없다면 새롭게 생성해주고 파일을 열어줍니다.

 

 

 

 

 

2.  아래 항목 2가지를 추가합니다.

 

[항목 추가]
android.useAndroidX=true
android.enableJetifier=true

gradle.properties 파일 내, 위 항목 2가지를 추가해줍니다.

 

 

 

 

 

3.  적용 후, 프로젝트를 빌드합니다.

 

적용 후 프로젝트를 빌드해보면 빌드 성공을 확인할 수 있습니다.

 

 

 

 

 

 

반응형

댓글