I\'m currently working on an android application. I have to log any new installed app name whenever the user is installing/downloading a new third party app. How can I get t
You will need to setup a BroadcastReceiver with an intent filter to receive the following Action: ACTION_PACKAGE_ADDED then from the onReceive() method of the BroadcastReceiver you can launch a Notification.