So i have a class that listens to incoming calls, i want to make a service to all my app to receive calls even when i'm not in the application's UI. How to trigger this class(broadcast receiver). I used "sendBroadcast" and have a FC.
sendBroadcast(new Intent(context, IncomingCallReceiver.class));
Thank you for your help.