Where is the debug.keystore on Mac?

arkmetal picture arkmetal · Dec 14, 2011 · Viewed 36.8k times · Source

I'm trying to generate my fingerprint and it supposed to be here : ~/.android/debug.keystore, but I don't have nothing there, although I can run my monodroid projects normally as well, so how can I find the debug.keystore file?

Answer

sabadow picture sabadow · Dec 14, 2011

The debug.keystore is in the folder that you say, but it's hidden so you can't see it on Finder.

Open a terminal and type:

cd ~/.android/
ls

If you could see the debug.keystore, that's the right folder. If you need to open in Finder, type in the same folder:

open .

Regards.