- 안드로이드 알림 설정 AppBridge 추가
- KeyIn Request 필드 수정
This commit is contained in:
@@ -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 !!(
|
||||
|
||||
Reference in New Issue
Block a user