오랜만에 안드로이드 개발을 하다보니 AndroidX라고 하는것에 대해 잘 몰랐는데 AndroidX와 관련해 에러가 발생했다
Execution failed for task ':app:mergeLibDexDebug'. Failed to calculate the value of task ':app:mergeLibDexDebug' property 'numberOfBuckets'
이슈를 해결하는 방법은 간단히 AndroidX를 Migrate 하면 된다
1. Mac의 경우, Android Studio > Refactor > Migrate to AndroidX 를 클릭
2. gradle.properties를 아래와 같이 세팅해준다
이렇게 하고 나면 문제는 다 해결된다.
'Issue Tracking' 카테고리의 다른 글
[iOS] Failure starting audio queue \M-3<…> (0) | 2021.11.02 |
---|---|
[Unity][ERR_STREAM_DESTROYED]: Cannot call write after a stream was destroyed (0) | 2021.10.30 |
[Android] Plugin with id 'kotlin-android' not found (0) | 2021.10.24 |
[Unity] unity android multidex problem (0) | 2021.10.23 |
The type or namespace name 'UI' does not exist in the namespace 'UnityEngine' (0) | 2021.10.22 |