- 안드로이드 알림 설정 AppBridge 추가

- KeyIn Request 필드 수정
This commit is contained in:
HyeonJongKim
2025-10-28 11:33:24 +09:00
parent feaaac73f7
commit e125a73228
16 changed files with 298 additions and 113 deletions

View File

@@ -210,6 +210,16 @@ class AppBridge {
return this.sendMessage(BridgeMessageType.GET_LOGIN_TYPE);
}
// 알림 수신 설정 가져오기 (Android only)
async getNotificationSetting(): Promise<{ enabled: boolean }> {
return this.sendMessage(BridgeMessageType.GET_NOTIFICATION_SETTING);
}
// 알림 수신 설정 저장하기 (Android only)
async setNotificationSetting(enabled: boolean): Promise<any> {
return this.sendMessage(BridgeMessageType.SET_NOTIFICATION_SETTING, { enabled });
}
// 네이티브 환경 체크
isNativeEnvironment(): boolean {
return !!(