Auto72

Results 23 comments of Auto72

I also tried to add the following NuGet packages to the PDFToImage project, "bblanchon.PDFium.iOS" "SkiaSharp.NativeAssets.iOS" Adding the Target frameworks: "net7.0-ios", "net8.0-ios". but still with no luck :-( When I run...

This will fix the issue. void RegisterForegroundService() { NotificationChannel chan = new NotificationChannel("my_service_urgent", "My Channel", NotificationImportance.None); chan.EnableVibration(true); chan.LockscreenVisibility = NotificationVisibility.Secret; NotificationManager notificationManager = GetSystemService(NotificationService) as NotificationManager; notificationManager.CreateNotificationChannel(chan); var notification =...