Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where is the debug.keystore on Mac?

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?

like image 469
arkmetal Avatar asked Dec 14 '11 16:12

arkmetal


People also ask

How do I find my keystore on a Mac?

The default location is /Users/<username>/. android/debug. keystore . Go into Finder, navigate to your home directory, then press Command+Shift+G and in the pop-up type .

How do I find the debug keystore?

Inside Tasks, navigate to “android” and double click on the signing report option. After clicking on this option you will get to see the path for your debug. keystore file.

Where is the keystore file located?

The default location is /Users/<username>/. android/debug. keystore.


1 Answers

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.

like image 193
sabadow Avatar answered Nov 05 '22 18:11

sabadow