2.1.0: Merge pull request #260 from onerain88/fix/push-ios-meta
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);