notification

  1. M

    iOS Question Firebase Messages does not trigger _RemoteNotification

    Hi everyone, today i opened a project that i had finished some month ago. In this project Firebase Messages was used. It Works now, the problem is that the sub "Application_RemoteNotification" does not trigger anymore when the app is open, but it show the banner in overlay, like if it is closed...
  2. Tilesoft

    Android Question Get applications notifications and display on my app

    Hi. Is it possible get other application notifications and display them on listview on my app?
  3. D

    Android Question [SOLVED] Fcm messaging - how many char can be send on a single notify ?

    I follow this link to implements a pc to android communication via Fcm Fcm Tutorial The notification is sent from B4J program on pc, received from B4A Android app, and correctly recognized But when I send notifications with body length greater than a few hundred characters, the android app...
  4. M

    Android Question Push Notification (Firebase) Not showing on some smartphones

    Hi everyone, i recently distributed an app that includes push notification. the notifications are locally created with the NB6 class. Unfortunately i‘ve got some feedbacks from my user saying that they are not receiving the notifications. I asked them what phone they are using: 90% Huawei, and...
  5. Mrphone

    Android Question AutoCancel(...) command does not work in NB6

    Hi.. :) The AutoCancel(True) or AutoCancel(False) command does not work at all n.Initialize("default", Application.LabelName, "HIGH").AutoCancel(True).SmallIcon(LoadBitmap(File.DirAssets,"noti_play.png")) _ .LargeIcon(LoadBitmap(File.DirAssets,"logo.png")).Color(Colors.RGB(187,127,42))...
  6. Mrphone

    Android Question Cancel notifications in the app

    Hi again I want to cancel the notification in my program .. but NB6 does not have the n.Cancel(1) command.
  7. Mrphone

    Android Question Cancel notification

    Hi guys :) I made a simple notification dim notif as Notification notif.Initialize notif.Icon = "icon" notif.AutoCancel = True notif.SetInfo("Title", "This is body.", Me) notif.notify(1) I want to do something whenever the notification is canceled is it possible?
  8. M

    iOS Question Wait for accept to receive notifications (RegisterUserNotification)

    Hi everyone, there is a way to wait for the user to click on the notification dialog, so the app stops to do things? Like: MsgBox2("Msg", "Body", "Title", Array("Yes", "No")) Wait For Msg_Click (ButtonText As String) If ButtonText = "Yes" Then 'things' End If thanks :D
  9. M

    iOS Question Intercept Firebase Messages (iosalert) while in background to store a state

    Hi everyone, i'm struggling finding the best solution to implement the notifications in my iOS app. I have two FB topics, one for syncing informations between the app and my server. (this should be silent push notification, and happends only in foreground) the second FB topic, instead, is for...
  10. M

    iOS Question [SOLVED] GeoFence and closed app

    Hi everyone. I was wondering if it's possibile to set up a geofence that when you enter (or exit), triggers an event catchable with the app closed. (like Apple "Find My" app, that can send a notification to you when a friend leave/arrive a place). I'm not knowledge about this things , so I'm...
  11. LucaMs

    Android Question Notifications, foreground services...

    I have read many times that the best example on how to create a "stable" foreground service is MyLocation, so I tried it. It works but I am trying to get the same behavoir of some other famous apps, like Whatsapp, Twitter, Zynga Poker, etc. They are able to receive notifications (obviously...
  12. rleiman

    Android Question Notification is displayed when app has no notifications defined when widget is on home screen

    Greetings, My customers are noticing a notification being displayed in the notification area of their screens as soon as they place my app's widget on their home screens. The app does not have any notifications defined nor are they used in any of my coding. This seems to be tied into the widget...
  13. C

    Android Question How do i enable Smart popup permission?

    Hi, I have a Samsung device and I noticed that there is a function called Smart Popup. I want to implement that function in my app but I don't know what permission to use. Also whatsapp and Amazon enabled smart popup automatically Can you help me? Thanks in advance, Simone
  14. M

    B4i Library [class] Foreground Notifications

    Hi, for my personal need, i had to write a small class in order receive notification when the app is showing (foreground). Maybe it can be useful to someone. You can set: Custom Text Color Custom Background Color The showing time An icon Vibrate (import the library "iPhone")
  15. A

    Spanish B4J PUSH

    Hola! Estuve buscando por el foro y no encuentro en ningun lado la forma de recibir una notificacion via push en b4j. Lo que estoy buscando es enviar desde php la push para que reciba un b4j esta notificacion y a partir de ahí realice una acción. Encontre siempre que b4j haga de servidor que...
  16. Marcos Alves

    Android Question Update Foreground Service Notification Message

    Hello, I have a foreground service that navigates in a sqlite table and downloads some images, and would like to put a counter in the notification to show the number of downloaded images. The service notification is created with this code: n.Initialize n.Sound = False n.Vibrate =...
  17. Cebuvi

    Android Question Show notoficacion programmed to several hours

    Hello, I am working on an app that submits notifications several hours apart by a fixed or variable interval. For example, 10:00, 11:00 and 12:00. After researching the forum I get it to work using a service in background and StartServiceAtExact but I have the following problems if the...
  18. M

    Android Question DownloadService random crash

    Hello, I have an app where I use DownloadService to download and save files. Up until recently it worked fine on my test device (Huawei P20 lite, Android 9, EMUI 9.1.0), but about 3 weeks ago it started crashing on downloading file without any message. I use the DownloadService like this (I...
  19. Nerdworld

    Android Question Always on Display - Notification Icon [Huawei Mate 20 Pro]

    Hey folks! I'm currently running into an issue with one of my apps: - My app has a constant notification for a running service - On my old phone (Samsung Galaxy S7 Edge) i had a small version of my app icon on the "always on"-display. - On my new phone (Huawei Mate 20 Pro) there is a small...
  20. A

    Android Question Problem when referencing "Firebase Analytics" and "Firebase Notifications"

    Hello, I tried to add an option for Push Notifications to my throw Erel's video Explanation. When referencing the libraries "Firebase Analytics" and "Firebase Notifications", an error message had shown up. (When referencing "Firebase Analytics" the error was "Maven Article wasn't found...
Top