업데이트:

카테고리:

/

태그: ,

AR 기능을 사용하기 위해 외부 라이브러리를 import 하였는데 위와같은 Duplicate 에러가 발생하였다.

// Maps & Location
  implementation 'com.google.android.gms:play-services-location:17.0.0'
  implementation 'com.google.android.gms:play-services-maps:17.0.0'
  implementation 'com.google.maps.android:maps-utils-ktx:1.7.0'

  // ARCore
  implementation "com.google.ar.sceneform.ux:sceneform-ux:1.15.0"

  // Retrofit
  implementation "com.squareup.retrofit2:retrofit:2.7.1"
  implementation "com.squareup.retrofit2:converter-gson:2.7.1"

찾아보니 [gradle.properties](http://gradle.properties)android.enableJetifier=true 를 추가해줘야 된다고 한다

써드 파티 라이브러리를 androidx와 호환되도록 하는 옵션이다.