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

- 5,095
- 3
- 34
- 51
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

- 12,700
- 11
- 57
- 61

- 2,457
- 2
- 21
- 38
-
1This saved the day for me! – Aquarius_Girl Jun 23 '21 at 13:08
The Mono for Android debug.keystore
file is in $HOME/.local/share/Xamarin/Mono for Android
. (Yes, there are spaces in that directory name.)

- 13,512
- 5
- 45
- 60
-
i realise that my problem was my apiKey, i got my fingerprint from another directory: ~/.android/debug.keystore and i didnt think that was the problem, because i generate with it in order to obtain my apikey and i use it in my Java android app and was working fine, but then i try change it to the debug.store that is located in this directory: $HOME/.local/share/Xamarin/Mono for Android/debug.keystore, and throws me another fingerprint, so i use it to generate another apikey, and then magically works my app on Mono. Despite of thank you very much for your help. – arkmetal Feb 02 '12 at 16:33
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.

- 2,501
- 4
- 31
- 44
Open Finder
select menu Go -> Go To Folder...
type /Users/username/.android

- 12,572
- 4
- 76
- 80
You will find debug.keystore file here, fire this command in terminal to see hidden file
defaults write com.apple.Finder AppleShowAllFiles YES
- Go to home directory
- go to .android folder which will be hidden

- 4,140
- 43
- 43