Reputation: 611
I'm trying to access my .android debug.keystore so I can use it for facebook.
When I type into windows cmd: C:\Users\<user>\.android\debug.keystore
I get C:\Users\<user>
is not recognized as an internal or external command, operable program, or batch file.
Can someone please tell me whats going ?
Upvotes: 7
Views: 5571
Reputation: 24820
In command line type
cd %USERPROFILE%/.android
You can find debug.keystore in this location
Upvotes: 12