My app receives and analyze data from received intent (ACTION.SEND). Intent has many details in extras depending upon the application.
What I want is packageID of application from which my has received the intent?
Is there any standard way to achieve this?
If you need this application details in many activities of your application, you could save them into the
Shared preferences
and use them from all of the activities without passing them each time as extras in an intent. You could do it this way for example:And then you could get the saved data like this: