TextField 클릭 시 아래와 같은 Crash 가 발생하였다.
java.lang.NoSuchMethodError: No virtual method setStylusHandwritingEnabled(Z)V in class Landroid/view/inputmethod/EditorInfo; or its super classes (declaration of 'android.view.inputmethod.EditorInfo' appears in /system/framework/framework.jar!classes4.dex)
java.lang.NoSuchMethodError: No virtual method setStylusHandwritingEnabled(Z)V in class Landroid/view/inputmethod/EditorInfo; or its super classes (declaration of 'android.view.inputmethod.EditorInfo' appears in /system/framework/framework.jar!classes4.dex)
at androidx.core.view.inputmethod.EditorInfoCompat$Api35Impl.setStylusHandwritingEnabled(EditorInfoCompat.java:606)
at androidx.core.view.inputmethod.EditorInfoCompat.setStylusHandwritingEnabled(EditorInfoCompat.java:215)
at androidx.compose.foundation.text.input.internal.EditorInfo_androidKt.update-pLxbY9I(EditorInfo.android.kt:168)
at androidx.compose.foundation.text.input.internal.EditorInfo_androidKt.update-pLxbY9I$default(EditorInfo.android.kt:43)
at androidx.compose.foundation.text.input.internal.LegacyTextInputMethodRequest.createInputConnection(LegacyPlatformTextInputServiceAdapter.android.kt:264)
at androidx.compose.foundation.text.input.internal.LegacyTextInputMethodRequest.createInputConnection(LegacyPlatformTextInputServiceAdapter.android.kt:201)
at androidx.compose.ui.platform.InputMethodSession.createInputConnection(AndroidPlatformTextInputSession.android.kt:143)
at androidx.compose.ui.platform.AndroidPlatformTextInputSession.createInputConnection(AndroidPlatformTextInputSession.android.kt:107)
로그 확인해보니 나오는 setStylusHandwritingEnabled 의 경우 API level 35 에 추가 되었다고 한다.
gradle 버전을 일괄적으로 업데이트 한 이후에 발생했기 때문에 버전 문제일 것으로 예상하여 core-ktx 버전 업데이트로 해결되었다!
EditorInfo | Android Developers
developer.android.com
https://mvnrepository.com/artifact/androidx.core/core-ktx
'Android' 카테고리의 다른 글
Compose Navigation 간단 정리 (0) | 2025.02.05 |
---|---|
[Android] Preferences DataStore 파일 확인하기 (Preferences Datastore Debugging) (0) | 2024.03.25 |
Android Studio Device Streaming / 안드로이드 스튜디오 기기 스트리밍 (0) | 2024.03.03 |
[Kotlin/Android] 안드로이드 스튜디오 플러그인 정리(Android Studio Plugin) (2) | 2024.01.28 |
[Kotlin/Android] 초기 프로젝트 생성 (window) (1) | 2024.01.24 |