I have an application Application1
which contains 2 java classes Sender
(for sending a Broadcast intent) and Receiver
(for receiving the Broadcast intent broadcasted by Sender
).
So can I receive the intent broadcasted by Sender
of Application1
in a Receiver
class of an other application, let suppose Applications2
? Is it possible to receive the intent broadcasted by one application into an other application?