When I click the debug button in eclipse, my application is signed by the debug android form, which is stored in the debug.keystore file.
Now I am implementing the Facebook SDK , which forces me to use a signed application for the Single SignOn function. Thus, I need to create a hash of my keystore and save it in our facebook developer account.
I know how to sign an application through a wizard in Eclipse (via AndroidManifest.xml). How to debug such a signed application?
Is there any way to change the debug key and configure our company key as a debug key? Or how should I go? Right now, I can get FB to work only by signing and installing my application on the device. I already tried to generate a debug key hash with no luck ...
source
share