Kamalone
Kamalone

Reputation: 4115

Restricting bradcast receiver for my application only

I have registered a broadcast receiver for my application. Now i want to restrict that receiver to my application only. What i need to do for that.

Upvotes: 0

Views: 152

Answers (2)

Lalit Poptani
Lalit Poptani

Reputation: 67286

You can unregister your BroadCastReciever when your Home Activity is destroyed.

Upvotes: 1

Saurabh Verma
Saurabh Verma

Reputation: 6728

Can you try using : android:exported="false" for your broadcast receiver in the manifest file

Upvotes: 1

Related Questions