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
Take a look at the intent documentation. You are looking for ACTION_PACKAGE_INSTALL (which seems to be never used, see comments) and ACTION_PACKAGE_REMOVED.