Where is the debug.keystore on Mac?

42,029

Solution 1

The Mono for Android debug.keystore file is in $HOME/.local/share/Xamarin/Mono for Android. (Yes, there are spaces in that directory name.)

Solution 2

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.

Solution 3

Path with get SHA1 on android studio from command prompt

keytool -list -v -keystore {complete path to debug.keystore} -alias androiddebugkey -storepass android -keypass android

Example:-

keytool -list -v -keystore ~/.android/debug.keystore -alias androiddebugkey -storepass android -keypass android

Solution 4

Simply you can open Finder then you can go through following path.

Go -> Home -> ./android/debug.keystore

Make sure that you can see the hidden files and folders.

Solution 5

  1. Open Finder

  2. select menu Go -> Go To Folder...

  3. type /Users/username/.android

Share:
42,029
arkmetal
Author by

arkmetal

Updated on September 09, 2021

Comments

  • arkmetal
    arkmetal over 2 years

    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?