27 lines
712 B
Swift
27 lines
712 B
Swift
//
|
|
// BackgroundServicePrefsKey.swift
|
|
// flutter_foreground_task
|
|
//
|
|
// Created by WOO JIN HWANG on 2021/08/11.
|
|
//
|
|
|
|
// service status
|
|
let BACKGROUND_SERVICE_ACTION = "backgroundServiceAction"
|
|
|
|
// notification options
|
|
let SHOW_NOTIFICATION = "showNotification"
|
|
let PLAY_SOUND = "playSound"
|
|
|
|
// notification content
|
|
let NOTIFICATION_CONTENT_TITLE = "notificationContentTitle"
|
|
let NOTIFICATION_CONTENT_TEXT = "notificationContentText"
|
|
let NOTIFICATION_CONTENT_BUTTONS = "buttons"
|
|
|
|
// task options
|
|
let TASK_EVENT_ACTION = "taskEventAction" // new
|
|
let INTERVAL = "interval" // deprecated
|
|
let IS_ONCE_EVENT = "isOnceEvent" // deprecated
|
|
|
|
// task data
|
|
let CALLBACK_HANDLE = "callbackHandle"
|