I want to show a notification when a new package is added. and I found the code that the manifest file need! what I can’t figure out is how to catch the broadcast inside my service. How can I do that?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can Register an
PACKAGE_INSTALLandPACKAGE_ADDEDReceiver for Receiving package install and uninstall events and then Start yourService( i.e IntentService)fromonReceiveof Broadcast Receiver for Showing notification when a new package is added.In Manifest.xml:
in PackageReceiver :
OR you can also register an receiver dynamically in your service