We are having this problem from weeks,I did the whole keyhash thing correctly and got the key hash too from this code:
enter code here try {
PackageInfo info = getPackageManager().getPackageInfo(
"Your package name",
PackageManager.GET_SIGNATURES);
for (Signature signature : info.signatures) {
MessageDigest md = MessageDigest.getInstance("SHA");
md.update(signature.toByteArray());
Log.d("Your Tag", Base64.encodeToString(md.digest(), Base64.DEFAULT));
}
} catch (NameNotFoundException e) {
} catch (NoSuchAlgorithmException e) {
}
}
but when i try to copy the project in my friend's eclipse to work together on a same project and using same facebook app it shows invalid key hash.the key w7*********** does not match any store key hash so what's the problem and how can i resolved this problem