Это видео недоступно.
Сожалеем об этом.

Local Notifications in Android - The Full Guide (Android Studio Tutorial)

Поделиться
HTML-код
  • Опубликовано: 2 авг 2022
  • With notifications, you can show an information to the user when your app is not active and encourage them to do some action like opening your app. In this video you'll learn how you can show such notifications in Android.
    ⭐ Get certificates for your future job
    ⭐ Save countless hours of time
    ⭐ 100% money back guarantee for 30 days
    ⭐ Become a professional Android developer now:
    pl-coding.com/premium-courses...
    Subscribe to my FREE newsletter for regular Android, Kotlin & Architecture advice!
    pl-coding.com/newsletter
    Join this channel to get access to perks:
    / @philipplackner
    Get the source code for this video here:
    github.com/philipplackner/Not...
    Join my Discord server:
    / discord
    Regular programming advice on my Instagram page: / _philipplackner_
    Checkout my GitHub: github.com/philipplackner
    You like my free content? Here you can buy me a coffee:
    www.buymeacoffee.com/philippl...

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

  • @frukoyurdakul
    @frukoyurdakul 2 года назад +25

    Good video for a tutorial! I would like to mention something that I've experienced about 2 weeks ago while dealing with foreground services, which also requires notifications so I thought this would be a nice place to mention.
    As of 2022-08-03, starting from API 33 (Android 13 Tiramisu), you will need to ask a runtime permission for notifications which the user will be able to deny. If that happens, you won't be able to post notifications. That includes creating notification channels as well. I had a habit of creating the channel right before posting the necessary notification before. But on API 33, the system prevents the app from creating a valid channel that you could post your notifications on if user denies the permission. That effectively prevents you from posting notifications for foreground services as well (the documentation states it will permit calling startForeground with a valid notification but actually doesn't if the permission was denied and channel was not created beforehand.)
    But, before asking the permission, you can create a notification channel, then the system will not post it when startForeground is called but it will not crash even if the user denies the permission afterwards. So, create your notification channels in application class, devs!
    Just wanted to mention it here.

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

      This permission requirement is a headache. Many people might dismiss it unintentionally and might now know how to re-enable it from App info

  • @Sam-yb9ut
    @Sam-yb9ut Год назад +4

    Very helpful. I love this channel because I think this is one of the channels which are has up-to-date information. Most of the other Android channel videos are very old. Appreciate the level of free content which is provided. Thank you.

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

    Thanks for mentioning in advance that, its all about locah notifications and not about push notifications. You also explaing difference between push and local notification. good work bro.

  • @lyawileh.a8741
    @lyawileh.a8741 Год назад

    This is the perfect video I was looking for. Thanks very much.

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

    Thanks Philip. Nice, quick tutorial.

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

    Thank you! Really nice and understandble tutorial!

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

    Philipp Lackner I have been watching every single tutorial video you published. Furthermore, I really like your videos and I would love to see more. Moreover, I hope that you will do a video on foreground service soon. Thank you for your hard work.👍

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

      He’s done it before in one of his old videos.

  • @Dibyendu.M
    @Dibyendu.M Год назад

    Thank you brother. This video is very helpful. Love from India. ❤

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

    wow! you actually solve my problem! i kinda regret not watching this earlier when found a bug in notification :(

  • @ishantsharma16
    @ishantsharma16 2 года назад +11

    Please upload push notification video also and how to manage push notification when app is open

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

    Very Informative thanks for notifications guide

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

    Nice video! I refer to your videos often. Thanks. Can i ask how to create android project templates like initial source code you given? Have a nice day 😊😊

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

    Always Awesome tutorial thanks you 🌹

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

    Another great video, thanks!

  • @ahmedassas5065
    @ahmedassas5065 2 года назад +7

    Please explain to us about sending at a specific time by jobscheduler

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

    👍 great video. Thanks!

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

    Hello Philipp L. many thanks for another informative and well explained video. Could you explain how to load a static json file from assets folder to a data class in viewmodel context? Using Moshi or other solution. Soon joining the community, thanks, best regards

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

    Thank you! How about video for WearOs app with Compose? How to connect an app with watches?

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

    very informative

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

    thanks a lot excelent explanation

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

    Hello, thanks for this video ! How can we make the notifications display as heads-up ?

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

    Please create a whole new series of Android Development (Kotlin) for Beginners
    Please... Love you from India🇮🇳🥰🥰🥰

  • @Jurica-mtb
    @Jurica-mtb Год назад +1

    Hi! I would like to know if there is a way to improve the use of Android navigation app which would notify users by screen flashing, vibrating or maybe sending warning to an external device which would sit in user's pocket when user is approaching to waypoints specified inside a ?.gpx file. Here's why: when riding a motorcycle during sunny days the mobile screen reflects the sunshine and it is hard to see a waypoints on display and riders can't hear the phone's sounds. I guess screen flashing would be the best way to warn/notify riders.
    So far I liked OsmAnd app for navigation. If it could display warnings as I described it would be great because available voice prompts are kind of useless.

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

    Thank you!

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

    Can we put createNotificationChannel method in dependency injection instead of the "MyApp" class?

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

    Hi Philips, I wonder if we can pin a notification on top without make it heads up (setting priority high)

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

    Thank you so much .assume we are loading data from the bacend server ,how can we keep the user notofied even when the app js closed .thank you Philip .🙏

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

    I'm sure you'll get 100K subs 😁

  • @RaHuLSiNgH-gt4im
    @RaHuLSiNgH-gt4im Год назад

    The background power consumption manager feature is killing the notification after running for a few minutes (especially this feature in vivo models). Put some light on this.

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

    Hey Philipp Lackner - Can you please help me with test cases on Sealed classes?

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

    Thanks man!
    .
    .
    Still waiting for MacBook give away 😅

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

    I have 3 routes: Home(), Product(), ProductDetail().
    . When my app is not running. I sent a notification from firebase, my phone received the notification. When I open the notification I want it to lead to ProductDetail(), but now when I open it it only leads to the Home() route. When the application is running and receives a notification, the above behavior leads to the ProductDetail()--> route (What I want). Can you tell me how to fix it or what keywords to search for? Thanks

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

    Please explain How to shedule notfication for every day at a specific time

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

    Pleased make video about bottom navigation with compose destinations

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

    about runtime permssion app for notification appear in Android 13.
    even if is local notificacions need that righT?

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

    you are the best

  • @911_Shorts
    @911_Shorts Год назад

    is there any video for background notification?

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

    Nice video

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

    Can you do a fcm push notification tutorial please.

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

    I want to buy your premium class bundle, but I'm still a student. Do you have any promo code?

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

    Thanks for a great video, but I can't manage to get the notification to appear. Any ideas?

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

    What if we want a button just to dismiss it? Is there a way of doing that?

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

    Hey can you make a tutorial for increasing push notification for Android the maximum is 24 can you make it to 50 or 80 I like using Twitter but I only get 24 maximum.

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

    hi philip.. i wanna ask you about something but first let me tell small secret " You are a gift from heaven for Android application programmers
    my quistion is if i am implementing FCM and i received newMessage.. how can i handle this newMessage to work only when user on foreground service?
    the problem is fcm extended class show notification even app closed or not and fcm class dont have foreground funcation

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

    what is the difference between the priority in the notification channel and in the notificationcompat builder?

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

      All lights/vibrations/priority stuff in notification builder refers to lower sdk versions, when notification channels weren't a thing. On higher sdk, if there's a notification channel, all settings should be set in there

  • @PandaTop.
    @PandaTop. 2 года назад +1

    Дякую!

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

    Can you add full screen notifications

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

    KTOR full tutorial

  • @commenter-cl4gl
    @commenter-cl4gl 2 года назад

    What about send notification without firebase?

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

      What do you mean? This video shows exactly that

    • @commenter-cl4gl
      @commenter-cl4gl 2 года назад

      @@PhilippLackner im sorry, i mean i watched your video build chat app using mongoDB and Ktor, can you make videos push notif when the chat come in and notif will show

    • @jagat.jeeban
      @jagat.jeeban 2 года назад

      @@PhilippLackner Please make a video about sending push notifications with firebase...like in a chat app when someone send a msg the notification will show up in the notification bar.

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

      @@jagat.jeeban There is already a video about sending push notification in this channel.

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

    Not full guide if you don´t show how to receive the notification when app is closed.

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

    I was only missing to add the Notification Channel reference in the NotificationCompat.Builder(context, CHANNEL_ID). Thanks :D

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

    To pass a bundle with the intent, you will need to use the flags: PendingIntent.FLAG_CANCEL_CURRENT or PendingIntent.FLAG_UPDATE_CURRENT, otherwise the extras are ignored. Unkown why, just like a lot of android strangeness, it will remain a mystery.