개발/Compose

ERROR: Compose targets '[uikit]' are experimental and may have bugs!

귀염둥이 팡무 2023. 8. 1. 15:42

 

Compose Multiplatform을 처음 개발하면 다음과 같은 오류를 만나볼 수 있습니다.

ERROR: Compose targets '[uikit]' are experimental and may have bugs!
But, if you still want to use them, add to gradle.properties:
org.jetbrains.compose.experimental.uikit.enabled=true

말 그대로 uikit을 대상으로 하는 컴포즈는 실험적이기에 많은 버그가 있다는 것을 의미합니다. 하지만 우리는 위험을 무릅쓰고 연구/사용을 할 것이기에 가볍게(?) 무시하고 강행하면 됩니다. 위의 오류에서도 설명은 나와있지만 이를 해결하는 방법은 간단합니다.

 

gradle.properties에 아래 코드를 한 줄 추가하고 Sync를 해주면 됩니다.

org.jetbrains.compose.experimental.uikit.enabled=true

그러면 손쉽게 오류를 해결하실 수 있습니다.