Local Push Notifications with .NET MAUI, Easy With This Plugin!

Поделиться
HTML-код
  • Опубликовано: 29 ноя 2024

Комментарии • 214

  • @jfversluis
    @jfversluis  2 года назад +6

    This is just one of the many amazing plugins that are available for .NET MAUI, want to learn about the rest? Check out this curated playlist right here 👉 ruclips.net/video/nCNh9G-Q688/видео.html

    • @CoderboyPB
      @CoderboyPB 2 года назад +6

      Bedankt!
      Would be very thankful to see a video update for MAUI about 'normal' push notifications as well 🙂

    • @jfversluis
      @jfversluis  2 года назад +3

      @@CoderboyPB I definitely want to do that, but that is MUCH more complicated :D stay tuned!

    • @kanaalmarc
      @kanaalmarc 2 года назад

      @@jfversluis Da's ook een wens van mij; aannemende dat het over remote notificaties gaat. Als het moet via Firebase, maar het liefst via een eigen .NET Core web server.

    • @jfversluis
      @jfversluis  2 года назад +1

      @@kanaalmarc Je kunt nooit push notifications sturen vanuit alleen je .NET Core web server.
      Je zult altijd via de servers van Apple en Google moeten gaan, zie: ruclips.net/video/AKYebqOCAzY/видео.html
      Het signaal om een notificatie te versturen kan natuurlijk uit je .NET Core web server komen.
      Dat gezegd hebbende, ik wil nog een aantal videos maken over push notificaties van remote voor .NET MAUI

    • @kanaalmarc
      @kanaalmarc 2 года назад

      @@jfversluis Ja dat bedoelde ik ook: initiëren vanuit eigen (hosted) web server. Ik weet dat, voor beveiliging, altijd Apple en Google er tussen zitten.
      Ik heb in mijn XF tijd ook met lokale notificaties gewerkt. Op iOS werkt dat niet, omdat Apple begrijpelijkerwijs geen echte achtergrond processen toestaat. Je hebt alleen de functionaliteit voor op de achtergrond verversen, en de frequentie wordt bepaald door iOS a.h.v. het app gebruik. Vandaar ook mijn wens om met push notificaties te werken.
      Afijn, ik wacht je videos met belangstelling af.

  • @bernardtbouillon201
    @bernardtbouillon201 10 месяцев назад +1

    If you don’t get this regularly, but thank you man. I appreciate your tutorials so much.

    • @jfversluis
      @jfversluis  10 месяцев назад

      I try! Thanks for the kind words!

  • @bneedels
    @bneedels 11 месяцев назад +2

    I like the video. Instructions are easy to follow. But not resulting in any notifications on IOS for me - code runs without exceptions but nothing shows. iPhone 13 installed via Hot Restart from VS 2022 17.8.2. .Net 8 MAUI project. Plugin.LocalNotification 10.1.8, also tried 11.0.1.preview01 with same result. builder is calling UseLocalNotification. Any ideas?

    • @bneedels
      @bneedels 11 месяцев назад

      var enabled = await LocalNotificationCenter.Current.AreNotificationsEnabled(); indicates Notifications are Not enabled. How to enable them? I tried setting Info.plist to Enable Background Modes so that Remote notifications are turned on, without result.

    • @krirkluangratchapan
      @krirkluangratchapan Месяц назад

      i'm same issue Android run Cool not any problem, but iOS when click show message nothing happen (permission noti allow already)

  • @JoseSilva-gt6zj
    @JoseSilva-gt6zj 2 года назад +6

    Hey, Gerald! I'm watching all of your new videos, thank you for sharing them!!! Please, could you talk about internationalization and themes (for user interface) in MAUI? Cheers!

  • @stellastarshine5763
    @stellastarshine5763 Год назад +9

    I had this working fine back in April, then it stopped working. Had to add new permissions for Android > 30, in order to use the schedule feature
    android.permission.SCHEDULE_EXACT_ALARM
    android.permission.USE_EXACT_ALARM
    Hope this helps someone else using this plugin!

    • @LuBuuuH
      @LuBuuuH Год назад

      Thank you so much! You saved me bro

    • @DeadDemosthenes
      @DeadDemosthenes 10 месяцев назад

      Hey, i was going in circles. This fixed it for me too! @jfversluis, Add this to your description for those trying to schedule alarms

    • @TobiasLarsen93
      @TobiasLarsen93 9 дней назад

      thanks! I needed this as well: android.permission.POST_NOTIFICATIONS

  • @anwaralomari2261
    @anwaralomari2261 2 года назад +3

    We are waiting for your videos because they are always useful and interesting

    • @jfversluis
      @jfversluis  2 года назад +1

      Thank you so much Anwar!

  • @6thStorm
    @6thStorm Год назад +2

    I don't know if I'm missing something but I really need some form of documentation of how to set settings or even find the NotificationRequest by the NotificationId or even add buttons as you say to let the user interact with the notification. I've searched through GitHub and NuGet but can't seem to find anything about these things. Really nice job though and exactly what I need. :)

  • @PetersTrickAccount
    @PetersTrickAccount Год назад +3

    Hey Gerald. Thanks for this very informative video. At 14:10, you mention action buttons on notifications. Could you possibly link me some documentation on how to do this or make a video about that as you suggested? :) That would be awesome

  • @AlexTan-l5f
    @AlexTan-l5f Месяц назад

    Hi Gerald, thanks alot, does the notifications work when the app is closed in ios? tqvm

  • @masterixmusic2886
    @masterixmusic2886 5 месяцев назад

    Exactly what I needed! Thank you for this tutorial.

  • @seshwoods
    @seshwoods 2 года назад +1

    Thank you, please tutorial how to combine this with MVVM

  • @PavelKonoshchenko
    @PavelKonoshchenko 11 месяцев назад +2

    Gerald, could you please make the video - How to handle firebase push notifications on MAUI. Also interesting to do it under .NET 8.0... Since, I dont know why but I couldnt find the nuget package which is compatible with MAUI .NET 8... Did you try it? Thanks for your channel!

    • @Quebster
      @Quebster 10 месяцев назад

      This... all the Firebase docs / tutorials need some fresh reworks for .NET 8+ MAUI.

    • @jfversluis
      @jfversluis  10 месяцев назад

      Firebase is a product from a competitor. I doubt there will be official docs for it 😄 the NuGet should automatically be compatible with .NET 8.
      I am working on push notifications but it will probably will be with Azure Notification Hub

    • @NuwanSenevirathna
      @NuwanSenevirathna Месяц назад

      I have implemented your xamarin firebase push notification. thank you. but unfortunately xamarin is stopped their updates. our products are stuck now. It is very vary useful if you can give a tutorial firebase maui implementation with android and iOS.

  • @_a__a_a
    @_a__a_a 9 месяцев назад

    great video thanks for the guidance it works well but I have an issue in my use case that has a web API that returns a number of devices getting overheated whenever the API returns the data at all times. I need to send a notification to the app user even if the app is closed.

    • @jfversluis
      @jfversluis  9 месяцев назад

      For that you probably want to look into remote push notifications

  • @solomonp-t2o
    @solomonp-t2o 4 месяца назад

    Hey boss! is there a video for Server side push notification in MAUI? Thank you

    • @jfversluis
      @jfversluis  4 месяца назад

      Not yet hopefully soon! I’m working on it

  • @alpaycalisir4448
    @alpaycalisir4448 7 месяцев назад

    Hello Gerald, thank you for the helpful video! Could you create a tutorial on implementing background local notifications? I aim to display upload and download progress even when the app is in the background.

  • @jefflungad6147
    @jefflungad6147 Год назад

    Thanks for this video. I am new to MAUI, right now my struggle is how to have notification to windows app. Is there a way to do it in MAUI?

  • @jonathanharmon3472
    @jonathanharmon3472 2 года назад

    Another fine video Gerald! Thank you for sharing!

    • @jfversluis
      @jfversluis  2 года назад

      Many thanks Jonathan, appreciate it!

  • @Noffett
    @Noffett 2 года назад

    Great video, just in time for a project I'm working on! I'm wondering if it's possible to make a popup notification "stick", similar to that of a timer that has run out. I've tried with the different category types but to no avail...

    • @jfversluis
      @jfversluis  2 года назад

      On iOS that is not really possible. The trick for that is to add a custom sound to the notification. The sound can be at most 30 seconds and the banner will then keep showing for 30 seconds.
      Not sure about Android, maybe it works the same.

  • @johnnySchillaci
    @johnnySchillaci Год назад +4

    just done a similar App, nothing was working until I've added the following permission in the android manifest

    • @jfversluis
      @jfversluis  Год назад +1

      Thanks for letting us know!

  • @AlaaAshour-w6u
    @AlaaAshour-w6u 10 месяцев назад +1

    Hello Gerald Im trying to make push notification service on maui .net 8.0 but firebase packages not supported what can i do or is there any other way to make it

  • @Neha-lh6ok
    @Neha-lh6ok Год назад

    great video ! but the video is not working on IOs are there any permissions that need to be added platform specifically , I am working with Dot Net 7 with Dot Net Maui Blazor

    • @jfversluis
      @jfversluis  Год назад

      Check the repo if there are maybe some changes by now

    • @Neha-lh6ok
      @Neha-lh6ok Год назад

      @@jfversluis i have just downloaded the code its not working on ios yet

  • @chrissevering1090
    @chrissevering1090 Год назад +1

    Hello thanks! Great video. Does this work also in MAUI Blazor?

  • @elqubed
    @elqubed 11 месяцев назад

    Great tutorial but can you help me for
    How can I do When i click on the notification, a specific page opens maui
    Thank you

  • @barisceyhan4755
    @barisceyhan4755 Год назад

    Thanks for the video. Can you mention an example on how we can schedule the notification in .NET Maui? i.e check every hour if user did this, otw create a notification

  • @luisjjjj
    @luisjjjj Год назад

    Great video, does anyone know if its possible to show the notifications even when the app has been completely closed?

    • @jfversluis
      @jfversluis  Год назад

      That should work all the same, if not, check the plugin repo

  • @jeffm3865
    @jeffm3865 2 года назад

    Thanks. For a future video, I would love to see an example of the new Maui .NET7 RC1 new
    X/Y position*
    Width/Height*
    Minimum Width/Height
    Maximum Width/Height
    SizeChanged
    Features on Windows. I have not seen a working example of this so far. Thanks for your helpful videos.

    • @jfversluis
      @jfversluis  2 года назад

      I'm planning some desktop videos in the near future so will see to include this, thanks!

  • @georgemantarakis3410
    @georgemantarakis3410 Год назад +1

    Thanks, Gerald, for the great videos.
    I am working on an app where the user should be able to set reminders for a specific date, with a message, and receive notifications of those reminders at the scheduled date even if the app is not running.
    I think that push notifications is the way to go to achieve this.
    The tutorials I watched so far regarding push notifications, describe a concept where a push notification is send from the Firebase console to the device which is not what I want.
    How can I achieve this kind of functionality?
    Any advice to which direction to look at, will be greatly appreciated.
    Kind regards,
    George 😀

    • @jfversluis
      @jfversluis  Год назад +2

      Hey George! Thank you for watching!
      If your use-case is reminders it’s probably better to use local push notifications. Then there is no need to have any timer code on your side and more importantly the reminder will still honor when the users device is offline or your server is down.
      If you still want to do it server-side, your code will probably be something like in the video: ruclips.net/video/VI1wgekz5ZM/видео.html
      You will want to have an Azure Function maybe with a cron trigger, retrieve the reminder from the database and send it such code like that. Hope this helps!

    • @georgemantarakis3410
      @georgemantarakis3410 Год назад

      @@jfversluis
      Hey Gerald 😀, Many thanks for taking the time to respond.
      What I had in mind was Cloud Firestore for the database and Cloud Function to retrieve the reminder from the database, but I wasn't sure if this is the correct approach.
      The video is great and sheds a lot of light.
      I have some (I guess a lot) work to do to achieve this.
      Many thanks again for your help,
      Kind regards,
      George

    • @jfversluis
      @jfversluis  Год назад +1

      No problem at all! Anything for my most loyal watchers 😉
      Yeah sure if you want to stick with Firebase I’m sure they have some serverless/cron functionality as well so you can substitute any technology there. But the general idea stays the same

  • @verjanvargasfernandojulian8395
    @verjanvargasfernandojulian8395 Год назад +1

    Hello, does anyone know how to set an Icon on IOs? I've already set Custom icon on Android but i dont seem to find how to set custom icon for IOs

  • @aracakaroglu8081
    @aracakaroglu8081 Год назад

    Nice Video thank you. For a shopping app, if users favorite items prices drops down I want to send local push notification. Any recommendation how to do it?

  • @S3Kglitches
    @S3Kglitches 2 года назад

    Great tutorial! Can the notification icon be really customized? Mostly all apps on Android 12 (even professional apps) show this "empty-icon" on notifications!

    • @jfversluis
      @jfversluis  2 года назад +1

      Oh really?! I'm more of an iOS person, I totally assumed that that would be something you could do 😅 I need to look into that then... What good does it to when it only shows you 10 circles in a row?

  • @superbike3114
    @superbike3114 2 года назад

    Hello Gerald, thank you for sharing yours videos 👍

  • @oktjona
    @oktjona Год назад

    How do I set a reminder by selecting start date and enddate and time using mvvm and be notified for example appointment reminder

  • @ademineshat
    @ademineshat 2 года назад +1

    I was playing around with it and it works fine on android. Just I couldnt figure it out how to add Images/Icons to the notifications ?

  • @domdom93847
    @domdom93847 11 месяцев назад

    Hey Gerald, thank you for your Video! For some reason it doesn't work for me... do I have to check any settings in the emulator or something like that? Thanks in advance!

  • @xxThemoritzxx
    @xxThemoritzxx 2 года назад +1

    Awesome video, does the shedule still works when the Application is stopped?

    • @jfversluis
      @jfversluis  2 года назад +1

      Yes!

    • @jonathanharmon3472
      @jonathanharmon3472 2 года назад

      @@jfversluis This answered a question I didn't even know I wanted to ask! I was going to research how to do notifications while my app wasn't running, now I don't! Awesome stuff!!

  • @glenntaylor7143
    @glenntaylor7143 Год назад

    Gerald, with reference to a number of questions could you please demo how to trigger a notification when the app is closed. You say it should work but no one seems to be able to make this happen.

  • @josephalulod7990
    @josephalulod7990 Год назад

    Thank you for this Gerald! Awesome as always. Tried it and works fine in Android. What is the work around for iOS?

    • @jfversluis
      @jfversluis  Год назад

      Thanks! Why need a workaround for iOS? For what?

    • @josephalulod7990
      @josephalulod7990 Год назад

      @@jfversluis the notification isn't showing in iOS, and the app actually also doesn't show in the notifications setting. I'm thinking that maybe I'm supposed to address the "permissions"? like you mentioned at the first 2 mins?

    • @jfversluis
      @jfversluis  Год назад

      If the app doesn’t pop a dialog to prompt the user if notifications are allowed then that’s definitely it

    • @josephalulod7990
      @josephalulod7990 Год назад

      @@jfversluis I have a two-parter, first is, i just want to confirm, you mean the "Permissions" discussed in this video ruclips.net/video/9GljgwfpiiE/видео.html&ab_channel=JamesMontemagno, right? 2nd question, I am encountering a bug in the NotificationActionEventArgs IsTapped property, it is being executed twice and changes the value of the condition of my if statement inside it.

  • @Lanthiren
    @Lanthiren Год назад

    Could I use this to show a media player UI in the notification center or should I be doing things differently

    • @jfversluis
      @jfversluis  Год назад

      Eventually I definitely want to add that. This is not implemented today.

  • @kelputoo.
    @kelputoo. Год назад

    Great tutorial however, how can the notification shows in the top? So the usr doesnt need to swipe the notification center to see the notifications?

  • @dsuess
    @dsuess 2 года назад

    Gerald, love the NotificationId 🐐

    • @jfversluis
      @jfversluis  2 года назад

      Gotta keep it nerdy 🤓

  • @franciscoroblesmoyano707
    @franciscoroblesmoyano707 2 года назад

    Hi, great video! How can I change the color of the notification?

    • @jfversluis
      @jfversluis  2 года назад

      Thanks! If that is possible on the operating system then it’s probably possible here. For iOS for instance that’s not possible. Don’t know about Android

  • @Uberhexation
    @Uberhexation Год назад +1

    How do i add an image? Can't get it to work

  • @lexusprogrammer4515
    @lexusprogrammer4515 2 года назад +1

    @Gerald please make the video on IOS part especially address the issue of Permissions to get Local Notifications working 🙏

    • @lexusprogrammer4515
      @lexusprogrammer4515 2 года назад

      Never mind, I figured it out. 🕺

    • @jfversluis
      @jfversluis  2 года назад +1

      You, my friend, are amazing! Well done!

    • @verjanvargasfernandojulian8395
      @verjanvargasfernandojulian8395 Год назад

      @@lexusprogrammer4515 Hello!! im Having this trouble and i dont seem to find how to ask permission on IOs, can i get a Quick tip on how to do this?

    • @VICTORHERNANDEZ-on6uk
      @VICTORHERNANDEZ-on6uk Год назад

      What was the solution? Im facing the same issue it doesn't work on iOS

    • @krirkluangratchapan
      @krirkluangratchapan Месяц назад

      how you do sir ?

  • @vigo1301
    @vigo1301 Год назад

    Hi Gerald, I have problems with notification push with your example, doesn´nt show it en my mobile, could you tell me what i have to revise?

    • @jfversluis
      @jfversluis  Год назад

      I don’t have enough any info for that to solve this for you, sorry!

  • @Leodinc
    @Leodinc Год назад

    Hi, I am working on a project in which I send a notification for each message i receive from an amazon sqs. The problem I am facing using this plugin is that even if I group notification as the documentation says, every new notification message "cancel" the previous one. Can someone help me?😅

  • @deanbullen9021
    @deanbullen9021 Год назад

    Thanks for this. Is there any way it would be possible to get a local notification to fire based on user location, to tell them they are near a point of interest? Any ideas?

    • @jfversluis
      @jfversluis  Год назад +1

      Yep! All in the docs 😉 github.com/thudugala/Plugin.LocalNotification/wiki/Location-Notifications

    • @deanbullen9021
      @deanbullen9021 Год назад

      @@jfversluis That's great - thank you!

  • @AD2S2023
    @AD2S2023 Год назад

    Hi i have a doubt. In this push notification, how to set a navigate particular area
    My english is bad, i hope you understand what i say

  • @JasonPurkiss
    @JasonPurkiss 2 года назад

    Great video thanks, do you know if I can use notifications without using Azure and use my local apache server instead? Need to check your recent videos as need to convert my app from xamarin I'm sure you have one :)

    • @jfversluis
      @jfversluis  2 года назад +1

      Thank you! For local notifications you don’t need Azure or anything. For remote push notifications you will always have to go through the servers of Apple and Google. Your Apache server can be the one to initiate a push notification, but it can’t send it to devices directly. See: ruclips.net/video/AKYebqOCAzY/видео.html

  • @ShinkuRaj-ji8nc
    @ShinkuRaj-ji8nc Год назад

    Hi I am try to push Notification in Blazor MAUI but its not working.
    my android version is 13 API33
    Build successful, there is no Error is showing but still not working
    NotificationCenter.Current.Show(Request); this Getting false

  • @wasimaakhtar
    @wasimaakhtar Год назад

    I am getting error Show: Notifications are disabled , any suggestion on this.

  • @Bgxjdkdgdh
    @Bgxjdkdgdh Год назад

    Yo!!! You are a life saver man. Thank you!!!

  • @paulvanlochem5668
    @paulvanlochem5668 2 года назад

    Hey Gerald, thx again for your new video. Can you make a video Programmatically Connecting to specified WiFi in a MAUI app. Or give a suggestion where I can find a solution. I try to create an app that connects with a device with its own WiFi and read some data. 🙂 Thanks

    • @jfversluis
      @jfversluis  2 года назад

      Hmm interesting case. For iOS, Android? Both? If you can find the code how to do it natively you should be able to relatively easily translate that into .NET MAUI.
      Did you find anything about that? If so and you can't figure it out, shoot me an email and I can have a look!

  • @rdvansunger5607
    @rdvansunger5607 2 года назад

    Hi Gerald, Thanks for all awesome videos.
    using System.Data.SqlClient; not working in .NET MAUI for net6.0-android. Would you consider doing a video on sql connection for .net maui.

    • @jfversluis
      @jfversluis  2 года назад

      Personally I think you shouldn’t connect a mobile app directly to SQL server. Add a REST API in between!
      Thanks for the kind words

  • @mapanjwani
    @mapanjwani Год назад

    Is there any limit to icon size for notifications? I tried using the main logo file in svg format but that didn't work when the notification was scheduled for after a day. I tried removing the logo attributes, that worked but now there is empty box in status bar for the notification. Any idea?

    • @salvcri
      @salvcri Год назад

      Excuse me but what .net version are you using?

  • @albe46
    @albe46 2 года назад

    Amazing! what about a tutorial for firebase remote config (both forms and maui)? thanks

    • @jfversluis
      @jfversluis  2 года назад

      Thanks friend! I’m not sure if i will get to that anytime soon, and I don’t think there will be a lot of Xamarin.Forms content still coming :)

  • @anandshindey
    @anandshindey Год назад +1

    Hello Gerald, Not getting any notification on android 13. I understand it needs some permission. Would you be able to help me on this?

    • @jfversluis
      @jfversluis  Год назад +1

      Check the plugin repository:)

    • @anandshindey
      @anandshindey Год назад

      Unable to comment. Have trouble with my account.

    • @anandshindey
      @anandshindey Год назад

      for solution, see issue no 346 in the plugin repository

    • @anandshindey
      @anandshindey Год назад

      Unable to comment

    • @anandshindey
      @anandshindey Год назад

      @Marc Majors Happy to help

  • @yaseenafzal6162
    @yaseenafzal6162 5 месяцев назад

    I am in trouble when I implementing push notification in my dot net core 7 Maui project . I want to implement this without xamrain packages.also I have issue plugin.firebase not compatible with my dot net core 7 Maui app for android and iOS . Can you please help me in this issue

    • @jfversluis
      @jfversluis  5 месяцев назад

      You might want to check this: github.com/AdamEssenmacher/GoogleApisForiOSComponents

    • @yaseenafzal6162
      @yaseenafzal6162 2 месяца назад

      @@jfversluis is it for android and ios both

  •  Год назад +1

    Seems that this plugin does not work for .NET 8 :(

  • @gokulg6429
    @gokulg6429 2 года назад +2

    Awesome.. Please make video for Google and Microsoft SSO.. Thanks

    • @jfversluis
      @jfversluis  2 года назад +1

      Thanks! I'll see what I can do!

  • @obaidniazi
    @obaidniazi Год назад

    You are a lifesaver, thank you so much!

  • @clauselmann7974
    @clauselmann7974 Год назад

    Hi Gerald,
    Thanks for all the great content! 👍
    I have tried a couple of push notification samples for Maui using Firebase, but they don't compile with the latest version of Visual Studio.
    Could you make a video on that?

  • @haseebrehman-nx9xi
    @haseebrehman-nx9xi Год назад

    I created a notification request. which pops up a notification every 30 mins. How do i stop it displaying it notification or how do i cancel schedule. cancel or cancellAll is not working for me. Thanks. :(

    • @jfversluis
      @jfversluis  Год назад

      I think you have to save the notification ID and update it with a scheduled date in the past

  • @kanaalmarc
    @kanaalmarc Год назад

    Kijkend naar de huidige staat van de plugin (zie issues op GitHub), lijkt deze nog steeds niet heel betrouwbaar helaas.

  • @caseyworth9701
    @caseyworth9701 Год назад

    What would happen if the app is closed at the schedule time to send the notification? Is the notification still sent. Trying to research tech for sending notifications and these seems easy. Just curious on limitations before trying it out.

    • @jfversluis
      @jfversluis  Год назад

      It definitely should. It schedules it in the OS push notification system which is independent of the app running or not

  • @kodepruthviraj
    @kodepruthviraj 2 года назад

    Please do a video about Adding action buttons to Notification

  • @jhonnymello4338
    @jhonnymello4338 Год назад

    This work if app is closed? I mean make a trigger came from server and app just run it

  • @DeepWorksStudios
    @DeepWorksStudios 2 года назад

    Thanks for letting us know

  • @mohammedalsabahii2
    @mohammedalsabahii2 2 года назад

    Thank you for sharing this amazing .Net Maui Plugin ,,
    I have quotation it is possible to send notification using multi language ,, thank you again have great day

    • @jfversluis
      @jfversluis  2 года назад +1

      You can use localized resources as string so that should definitely be possible :) Thanks for watching!

    • @mohammedalsabahii2
      @mohammedalsabahii2 2 года назад

      @@jfversluis I will try thank you

  • @rasmusb639
    @rasmusb639 Год назад

    Coo. It does not seem to send notifications when app is closed though, any way to make it so?

    • @jfversluis
      @jfversluis  Год назад +1

      It definitely should. Check the plug-in repo

  • @helloeveryoneb5996
    @helloeveryoneb5996 2 года назад

    Can You please put a video based on touch effects button in maui?

    • @jfversluis
      @jfversluis  2 года назад

      I'm not sure what you mean with based on touch effects button?

    • @helloeveryoneb5996
      @helloeveryoneb5996 2 года назад

      @@jfversluis s bro based on touch effects on button and if a button is selected it has to be highlighted like that...

  • @ALaaAshour-l7y
    @ALaaAshour-l7y Год назад

    is there any other plugin to send notifications to devices not locally

    • @jfversluis
      @jfversluis  Год назад

      Yep, check my videos about push notifications

  • @serdarpinar6186
    @serdarpinar6186 Год назад

    Hi Gerald. i have a problem.. IOS on notificationreceived not working.? can you. help me.. using xamarin forms

    • @jfversluis
      @jfversluis  Год назад

      It’s near impossible to say anything useful about this without any more information, sorry!

    • @serdarpinar6186
      @serdarpinar6186 Год назад

      @@jfversluis Hi again.. notification succeccfully working but when ontapped on ios then not received any data. but android working properly. LocalNotificationCenter.Current.NotificationActionTapped += Current_NotificationActionTapped; not working on ios. thank you

  • @AlwaysPavan.3
    @AlwaysPavan.3 Год назад

    Please Make a video with firebase notification FCM in MAUI

  • @ErwinEchon
    @ErwinEchon 2 года назад

    Great video. can you also do a video on how to sign in using a google account in MAUI ? Thanks in advanced

    • @jfversluis
      @jfversluis  2 года назад

      Maybe! I'm not great with auth... I'll see what I can do!

    • @ErwinEchon
      @ErwinEchon 2 года назад

      @@jfversluis Thank you in advanced

  • @TestLearn-i5j
    @TestLearn-i5j Год назад

    How to show notifications when is turned off application

  • @Criss129
    @Criss129 Год назад

    Hello, what about asking for permissions on Android? When I run it on IOS, system asks me for permission so I can grant it. On android its not doing that. I have added permission to Manifest file, but I still have to turn on notification permission manually in system settings for my app.

    • @jfversluis
      @jfversluis  Год назад

      Have a look at the code for the plugin to see if it’s actually supposed to do that and open an issue on the repo if you think there is a bug!

    • @Criss129
      @Criss129 Год назад

      It probably shouldn't but maybe you know the way to do it? Cause its not on the list of class "Permissions".

    • @jfversluis
      @jfversluis  Год назад

      The permissions API is very extensible, look it up in the Permissions Docs :)

  • @glenntaylor7143
    @glenntaylor7143 Год назад

    Hi, can the notification be fired when when the App is closed e.g. 24 hours after it is set? Also can the notification be retained when the App is closed?

    • @jfversluis
      @jfversluis  Год назад

      That should both be possible absolutely

    • @glenntaylor7143
      @glenntaylor7143 Год назад

      @@jfversluis Hi, cant' find how to do this in documentation and which ever way I try can't get this to work. How do you ensure the notification will fire after the App s closed? i.e the equivalent of the Android Alarm Manager SetExact and AllowWhileIdle.

    • @luisjjjj
      @luisjjjj Год назад

      @@glenntaylor7143 Hi, did you find a solution to fire notifications when app is closed?

    • @glenntaylor7143
      @glenntaylor7143 Год назад

      @@luisjjjj Hi, apart from 'this should be possible' I have not found a solution. Reply to a simi;ar question was 'it should'. If this is the case I would like to see a demo.

  • @GeorgePhillips-x1f
    @GeorgePhillips-x1f 10 месяцев назад

    I love .net Maui so much

    • @jfversluis
      @jfversluis  10 месяцев назад

      Glad to hear that!

  • @yaseenafzal6162
    @yaseenafzal6162 2 месяца назад

    is it possible without xamrain packages implement for android and ios

    • @jfversluis
      @jfversluis  2 месяца назад

      Absolutely. You can do anything in Xamarin or .NET MAUI without the libraries. Those are just there to make it easier but those libraries are bound to the same rules as you are so you can do everything without a single plugin

    • @yaseenafzal6162
      @yaseenafzal6162 2 месяца назад

      @@jfversluis can you please send me some examples for push notification without xamrian

  • @kureh268
    @kureh268 Год назад

    How do I set notification without button? I want to set notification at a specific time

  • @imsagarchopra
    @imsagarchopra 10 месяцев назад

    This does not work with .Net 8 , when app is in background

  • @camillejose9243
    @camillejose9243 11 месяцев назад

    Is this also work for WinUI?

  • @BilalIjaz-fi9hn
    @BilalIjaz-fi9hn 6 месяцев назад

    will it be pushed when app is not open like we do with google firebase

    • @jfversluis
      @jfversluis  6 месяцев назад

      It should, yes

    • @BilalIjaz-fi9hn
      @BilalIjaz-fi9hn 6 месяцев назад

      @@jfversluis which i should use.
      this plugin or google firebase for push notification

  • @doctorj1607
    @doctorj1607 Год назад

    how do you set a custom sound when notification is sent?

    • @jfversluis
      @jfversluis  Год назад

      I think that’s in the documentation on the repo

    • @doctorj1607
      @doctorj1607 Год назад

      @@jfversluis thanks for the reply. i am using firebase, spaciffically with local notifications plugin. it all seems to work well to get the notifications and showing them, so thank you for the video,. but when it comes to set sound it doesn't seem to work when the app is stopped. The sound defaults. to system standers. This seems much more complex, than first expected now i have looked into it.

    • @doctorj1607
      @doctorj1607 Год назад

      @@jfversluis when i set the channel using android.channelId. the test device creates a new channel (general, micellanous) not sure what is heppening here.

    • @doctorj1607
      @doctorj1607 Год назад

      @@jfversluis Hi, it looks like it is using the default channel name not the name set by the user.

  • @PawnDracula
    @PawnDracula 6 месяцев назад

    Thank you !

    • @jfversluis
      @jfversluis  6 месяцев назад

      You're very welcome!

  • @aathifmahir
    @aathifmahir 2 года назад

    Awesome 👍

  • @Uberhexation
    @Uberhexation 2 года назад

    Thanks :)

    • @jfversluis
      @jfversluis  2 года назад +1

      Oh no thank you for your support!

  • @macupie
    @macupie Год назад

    You are my man! The implementation now is not even worth talking about :D

  • @prasannamca2730
    @prasannamca2730 Год назад

    for ios?

  • @igor.muller
    @igor.muller Год назад

    It's not working for me :/

    • @jfversluis
      @jfversluis  Год назад

      If you want me to give you some kind of hint I will need more than "it's not working" 😄

  • @AhmedTXT
    @AhmedTXT 2 года назад

    nicce

  • @splashy8098
    @splashy8098 Год назад

    Great video! Just sharing what I found to make it work on Android github.com/thudugala/Plugin.LocalNotification/wiki/1.-Usage-10.0.0--.Net-MAUI

    • @jfversluis
      @jfversluis  Год назад

      Perfect, thanks for sharing!

  • @chiraagrokade8557
    @chiraagrokade8557 10 месяцев назад

    @jfversluis this code not working with iOS?

    • @jfversluis
      @jfversluis  10 месяцев назад

      It should! Check the repo for any issues or things you need to configure

  • @saeednajmddin7676
    @saeednajmddin7676 10 месяцев назад

    Is that plugin compatible with .net 8?

    • @jfversluis
      @jfversluis  10 месяцев назад

      Check the repo. If it works with .NET 6/7 there is a high probability it will work with 8

  • @王龙-x7y
    @王龙-x7y 2 года назад

    Awesome 👍