fix:1、添加sdk。2、添加h5
This commit is contained in:
Vendored
+15
@@ -0,0 +1,15 @@
|
||||
using System;
|
||||
|
||||
namespace Unity.Notifications
|
||||
{
|
||||
[Flags]
|
||||
internal enum iOSPresentationOption
|
||||
{
|
||||
Badge = 1 << 0,
|
||||
Sound = 1 << 1,
|
||||
Alert = 1 << 2,
|
||||
List = 1 << 3,
|
||||
Banner = 1 << 4,
|
||||
All = ~0,
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user