- 안드로이드 알림 설정 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

@@ -74,7 +74,11 @@ export enum BridgeMessageType {
OPEN_APP_SETTINGS = 'openAppSettings',
// 로그인 방식 설정
GET_LOGIN_TYPE = 'getLoginType'
GET_LOGIN_TYPE = 'getLoginType',
// 알림 수신 설정 (Android only)
GET_NOTIFICATION_SETTING = 'getNotificationSetting',
SET_NOTIFICATION_SETTING = 'setNotificationSetting'
}
export interface DeviceInfo {
@@ -103,4 +107,11 @@ export interface ShareContent {
text: string;
url?: string;
image?: string;
}
export interface NotificationSettingResponse {
success: boolean;
enabled: boolean;
needsPermission?: boolean;
message?: string;
}