[android-developers] How can I deny other apps to read my package signature?

2011-07-11 Thread Richard
Hi all, using this code: PackageManager pm = getPackageManager(); try { PackageInfo info = pm.getPackageInfo(getPackageName(), 64); Signature [] sig = info.signatures;

Re: [android-developers] How can I deny other apps to read my package signature?

2011-07-11 Thread Kostya Vasilyev
I don't believe that hackers use the API - they process your application at another computer, and create a new package, signed with a new key. The hacked package has code to intercept that PackageManager call, and return your original signature. -- Kostya Vasilyev 11.07.2011 17:54 пользователь