Reputation: 1291
I am new to android.. I had created an application (AgentApp) which has an activity and a broadcast receiver. The intent filter of the receiver is android.intent.action.PACKAGE_ADDED .After launching the application,if any other app is getting installed the receiver is working fine.
But my doubt is when my application(AgentApp) is getting installed the receiver is not listening it y?..
Upvotes: 0
Views: 2799
Reputation: 13247
See ACTION_PACKAGE_ADDED docs.
Broadcast Action: A new application package has been installed on the device. The data contains the name of the package. Note that the newly installed package does not receive this broadcast.
Upvotes: 2