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?
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.