Onuray Sahin
Onuray Sahin

Reputation: 4135

What is the default path of debug.keystore on Mac?

I am a new Mac user. I searched everywhere for debug.keystore file, but no luck. Is it possible that eclipse can't create the file?

Upvotes: 46

Views: 52847

Answers (4)

Binod Singh
Binod Singh

Reputation: 712

Open Terminal found in Finder > Applications > Utilities In Terminal, paste the following: defaults write com.apple.finder AppleShowAllFiles YES Press return Hold ‘alt’ on your keyboard, then right click on the Finder icon in the dock and click Relaunch.

Upvotes: 1

Tanzeena
Tanzeena

Reputation: 21

Using the Command+shift+G I found the files in .android directory, but for mac I found no "debug.keystore" file rather I found "debug.keyset".

Being not so sure, but I deleted this one and clean and build my app, now its working for me.

Upvotes: 2

P.Melch
P.Melch

Reputation: 8190

should be here:

~/.android/debug.keystore

Upvotes: 14

Aleks G
Aleks G

Reputation: 57326

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 .android - you'll see all files there.

Upvotes: 120

Related Questions