Let say that I have different certificates A-certificate and B-certificate, and I sign 3 apps (one with A , and two with B)
How can I check form application signed with certificate B that the other app is also signed with B (not with A)
I need some method that will programmatically check if some app is signed with the same certificate as some other app
the method stub should look like this
public boolean sameCertificate(String packagename1,String packagename2){
//some comparison
//return true/false
}