I would like to send intentions containing confidential information to another application in the system that I also wrote. Before doing this, I need to verify that the application to which I am sending them is signed by me, and not just the rogue version with the same package name and classes. How can I do this programmatically?
I want to do this using explicit intentions sent through startService () and startActivity (), so there is no problem around the translation. However, I do not want to send anything until I confirm that the name of the package that I specify is installed and signed by the author (I myself in this particular case).
source
share