fix:1、添加sdk。2、添加h5

This commit is contained in:
2026-06-25 15:48:45 +08:00
parent c05a65cdc3
commit 86518aae41
1212 changed files with 71385 additions and 194 deletions
@@ -0,0 +1,18 @@
using System;
namespace Unity.Notifications
{
[Flags]
internal enum iOSAuthorizationOption
{
Default = 0,
Badge = 1 << 0,
Sound = 1 << 1,
Alert = 1 << 2,
CarPlay = 1 << 3,
CriticalAlert = 1 << 4,
ProvidesAppNotificationSettings = 1 << 5,
Provisional = 1 << 6,
All = ~0,
}
}