is there a way, in a Receiver module, to know which app (by package name) has sent the Intent?
B4X:
Sub Process_Globals
End Sub
'Called when an intent is received.
'Do not assume that anything else, including the starter service, has run before this method.
Private Sub Receiver_Receive (FirstTime As Boolean, StartingIntent As Intent)
Log($"Received $Time{DateTime.Now}"$)
If StartingIntent.IsInitialized Then
'who called me?
End If
End Sub