I need to call a method residing in a FireBaseMessaging service from my main activity. I have tried to Bind the service (How to call methods of a Service from activity?) and also use BroadcastRecievers (Android call method in Service from Activity) but since both onBind and onStartCommand are declared final in FireBaseMessagingService class and therefore cannot be overrided my efforts werent successful. How can this be achieved?.
Thanks for your attention.