From 686a5eb3b21dcb1a388ff0c24998ee837109586f Mon Sep 17 00:00:00 2001 From: Allan Ritchie Date: Thu, 25 Apr 2024 15:13:09 -0400 Subject: [PATCH] Update MyPushDelegate.cs --- ProjectTemplates/ShinyApp/Delegates/MyPushDelegate.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ProjectTemplates/ShinyApp/Delegates/MyPushDelegate.cs b/ProjectTemplates/ShinyApp/Delegates/MyPushDelegate.cs index a921e8a..801e2f8 100644 --- a/ProjectTemplates/ShinyApp/Delegates/MyPushDelegate.cs +++ b/ProjectTemplates/ShinyApp/Delegates/MyPushDelegate.cs @@ -1,4 +1,8 @@ using Shiny.Push; +#if APPLE +using UIKit; +using UserNotifications; +#endif namespace ShinyApp.Delegates;