I created an android app with an intent service bound to an activity. I followed this excellent article.
But now I would like to send data from my IntentService to update my view (I mean, my activity).
The context: I want to create a simple countdown. The service send the "time" to the activity every minute or second for example.
How can I send data from my IntentService to my Activity ?
In kotlin please... Thank you!