IT/Android

webview 사용 시 "Uncaught (in promise) TypeError: Cannot read property 'getItem' of null"

surfharu 2022. 6. 21. 11:16

 

기본 브라우저(크롬) 에서는 잘 뜨던 페이지가 webview로 띄우면 아래 오류로 안뜨는 경우가 있다.

"Uncaught (in promise) TypeError: Cannot read property 'getItem' of null" 

 

webview 설정시 domStorageEnabled 옵션을 추가해준다. 로컬 저장소 사용여부를 허용해 주는 옵션이다.

webview.apply {
    webViewClient = WebViewClient()
    settings.javaScriptEnabled = true
    settings.domStorageEnabled = true
}