Skip to content

2.1.0: Merge pull request #260 from onerain88/fix/push-ios-meta

Compare
Choose a tag to compare
@github-actions github-actions released this 17 Aug 03:22
· 62 commits to master since this release
a684341

Bug Fixes

  • 推送: 修复华为获取 registerationId 失败,导致上传无效记录的 bug

Features

  • 推送: 支持 iOS 前台推送设置
public enum LCIOSNotificationPresentationOption {
    None   = 0,
    Badge  = 1 << 0,
    Sound  = 1 << 1,
    Alert  = 1 << 2,
    List   = 1 << 3,
    Banner = 1 << 4
}

LCIOSPushManager.SetNotificationPresentationOption(option);