Bug? StartReceiverAt typo - yiankos1    Apr 3, 2023   (3 reactions) Not a bug, just a typo...
140918... B4A Question How to use next scheduled time with StartReceiverAt? - asales    Jan 15, 2023 the StartReceiverAt - would it look like this?
Private Sub Receiver_Receive (FirstTime As Boolean...))
StartReceiverAt(Me,t,True)
End Sub
2 - There is no similar code to this lines? I can remove... B4A Tutorial Receivers and Services in 2023+ - Erel    Jul 28, 2024   (32 reactions) a receiver to start with StartReceiverAt.
2. Intents with actions that are defined in the manifest... cancels services scheduled with StartServiceAt, also works with receivers scheduled with StartReceiverAt... B4A Question StartReceiverAt OkHttpUtils2 during phone sleep - Cainsoft (first post)    Sep 11, 2023 As a test I did a standard java downloader (ctrl c + ctrl v), but the same issue. I cannot get aroun... B4A Question Converting StartServiceExact to StartReceiverAt - Erel (first post)    Jul 12, 2023 https://www.b4x.com/android/forum/threads/start-receiver-at-exact-time.148185/#content... B4A Question [ SOLVED ] StartReceiverAt for daily notification - Inrenbang    Feb 16, 2023 receiver and using startReceiverAt, unfortunately i can't get it work, as i put initial trigger... can i initially startReceiverAt from activity_create or service_create without user intervention?... B4A Code Snippet Start receiver at exact time - Erel    May 28, 2023   (17 reactions) The standard StartReceiverAt is inexact, in order to allow the OS to make optimizations. Worth reading: https://developer.android.com/training/scheduling/alarms Exact scheduling: 1. AddPermission(android.permission.SCHEDULE_EXACT_ALARM) 2. Private ion As Object - class global 3. Private Sub Button1_Click Wait For (GetScheduleExactAlarmPermission) Complete (HasPermission As Boolean) If HasPermission Then StartServiceAtExact(ScheduledReceiver, DateTime.Now + 10 * DateTime... Beta B4A v12.2 BETA is available for download - Erel    Jan 10, 2023   (43 reactions) I'm happy to release a new BETA version of B4A. This update adds an important new feature - Receiver modules. 137937 Receivers: https://www.b4x.com/android/forum/threads/receivers-and-services-in-2023.145370/#content Home screen widgets and firebase notifications updated to work with receivers. StartReceiver, StartReceiverAt methods. When B4A-Bridge is connected, the compiler will not fail if ADB is missing or throwing an error. Ctrl + Alt + W closes the current code window. Bug fixes and... B4A Tutorial [B4X] Features that Erel recommends to avoid - Erel    Dec 6, 2023   (93 reactions) .
StartServiceAt / StartServiceAtExact -> StartReceiverAt / Exact
With a few exceptions, it is no... Other B4A v12.2 is available for download - Erel    Jan 23, 2023   (43 reactions) I'm happy to release a new version of B4A. This update adds an important new feature - Receiver modules.
https://www.b4x.com/android/forum/attachments/1673342003844-png.137937/
Receivers: https://www.b4x.com/android/forum/threads/receivers-and-services-in-2023.145370/#content
Home screen widgets and firebase notifications updated to work with receivers.
StartReceiver, StartReceiverAt... Page: 1   2   3   4   5   |