Brijesh Masrani
Brijesh Masrani

Reputation: 1449

need a trigger when application is installed

I want to know if there is any broadcast or other way in which we can Identify that the application is now installed.

I tried intent.action_package_install and intent.action_package_added but I am not able to receive the Broadcast.

Upvotes: 0

Views: 1210

Answers (1)

Hicham
Hicham

Reputation: 586

I don't think you can do. Regarding ACTION_PACKAGE_ADDED, documentation says : "Note that the newly installed package does not receive this broadcast.". Check more on http://developer.android.com/reference/android/content/Intent.html#ACTION_PACKAGE_ADDED

Upvotes: 1

Related Questions