B4A Tutorial [B4X] Firebase Push Notifications 2023+ - Erel    Feb 9, 2025   (30 reactions) Google has deprecated the previous method of sending push notifications. It will stop working.... The notification is created in FirebaseMessaging receiver. Note that in debug mode, it will only work... the code references). 2. Download the attached project. Note the two subs added there (RemoteNotification and PushToken). Notes 1. In iOS the notification popup only appears while the app is not in the foreground. You can UserNotificationCenter to change this behavior (search and you will find). 2... B4i Tutorial FirebaseNotifications / Push Messages (server not required) - Erel    Jun 26, 2023   (6 reactions)   tags: Erel Updated tutorial: https://www.b4x.com/android/forum/threads/b4x-firebase-push-notifications-2023.148715/ The configuration steps are still relevant. 261132706 Firebase Notifications service makes... anywheresoftware.b4i.push. Enable push notification service. 2. Create an Apple Push Notification SSL certificate....RootPanel.Color = Colors.White NavControl.ShowPage(Page1) App.RegisterUserNotifications(True, True, True) App.RegisterForRemoteNotifications fm.Initialize("fm") End Sub Private Sub... B4i Tutorial Push notifications - Erel    Jun 21, 2022   (8 reactions) -required.68645/ Old, don't use: B4i v1.50 added support for push notifications. Push notifications... of the push app. For example anywheresoftware.b4i.push. Enable push notification service. 2. Create an Apple Push Notification SSL certificate. Use the same certSigningRequest.csr file that you previously... notifications. This is done with this code: App.RegisterUserNotifications(True, True, True) 'allow badge, sound and alert App.RegisterForRemoteNotifications The PushToken event will be raised... B4i Tutorial Notifications with actions - Erel    Sep 18, 2024   (9 reactions) of actions to the push notifications. The list becomes visible when the user 3d touches the notification or drags it with two fingers. Note that it is an iOS 10+ feature. Before you start make sure to first implement the standard push notifications and see that they work with the B4J code. Steps to add actions: 1. Add this code at the end of the main module: #AdditionalLib: UserNotifications.framework #if OBJC #import <UserNotifications/UserNotifications.h> @end @interface b4i_main... Bug? iTopNotification cutted out [Library] - Mike1970    Dec 6, 2019 Hi, I tried out the iTopNotification Library. The problem is that for the iPhones with the notch, the notification is showing cutted out: 86135... B4i Tutorial Silent Push Notifications - Erel    Dec 28, 2018   (1 reaction) This tutorial explains how you can use push notifications that don't show any visual cue to... example to download new content.
Make sure to start with standard push notifications: https://www... the remote notification background mode:
#PlistExtra: <key>UIBackgroundModes</key><array><string>remote-notification</string></array>
2. When a remote... B4i Library UserNotificationCenter class - Erel    May 18, 2020   (14 reactions) A class that creates local notifications based on the newer iOS 10+ API. The notifications are configured to show even when the app is in the foreground. You can also add actions to the notifications: https://www.b4x.com/basic4android/images/SS-2018-12-20_16.03.33.png See the attached example... B4i Code Snippet UserNotificationCenter class - Schedule Notifications - Alexander Stolte    May 5, 2024   (6 reactions)
This is an addition to the UserNotificationCenter class.
https://developer.apple.com/documentation/usernotifications/scheduling_a_notification_locally_from_your_app?language=objc
Sub Class_Globals
Private NotificationCenter As NativeObject
Type NotificationCenter_DateComponents(Year As Int,Month... B4i Question UserNotificationCenter - set interruptionLevel for time sensitive notifications - Alexander Stolte    Jun 8, 2024   (1 reaction) In my app, I need a notification that is displayed on the lock screen and is not immediately pushed to the notification center. You can do this by declaring a notification as “time critical”. Now... B4i Code Snippet Keyboard will hide notification - Erel    Jan 18, 2021   (6 reactions) :UIKeyboardWillHideNotification object:nil]; } #end if 2. In B4XPage_Created: #if B4i Dim no As NativeObject = B4XPages... Page: 1   2   3   4   5   6   7   |