Hi,
I have created an application in android. I have one activity which invokes my app in a thread through a service.
In that thread, I register an intent receiver dynamically. But sometimes I keep getting an error saying that intent receiver is leaked. I searched on the forums & it said that I would have to unregister it when in pause mode.??
How to go about this. The idea is to invoke a intentReceiver(Broadcast receiver) then keeps listening for my SMS messages.

