I need to have my application listen for changes in addressbook in Android. I have read that it can be done using ContentObserver
and listening for changes in ContactsContract.Contacts
. It seems the lifecycle of the ContentObserver ends when the application is closed.
How do I make the ContentObserver work even if the application wasn't opened?