React / Next.js 웹뷰에서 네이티브 앱으로 메세지 보내기/토큰받기
메세지 보내기
global.d.ts에서 Window 의 타입에 webkit과 메세지핸들러를 미리 정의해줘야 오류가 나지 않는다.
웹킷은 네이티브 앱에서 웹뷰로 페이지를 호출할 때 생기는 것이라 기본 window에는 존재하지 않는다.
// global.d.ts
export {}
declare global {
interface Window {
webkit: {
messageHandlers: {
MESSAGE_H...
1nxeo.hashnode.dev2 min read