Android - How To Send Data To Another App Without Bringing It To The Foreground?
We are planning to link our app with another person's app, and we would like to know, how would we be able to in Android for our app to send data to that other person's app without
Solution 1:
Yes. Send your data using a broadcast Intent
and implement a BroadcastReceiver
on the receiving app. This will not automatically bring the receiving app to the foreground.
Post a Comment for "Android - How To Send Data To Another App Without Bringing It To The Foreground?"