Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android Debug keystore

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 ?

like image 408
GOAT Avatar asked Aug 18 '12 20:08

GOAT


People also ask

Where is the Android 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.

What is the debug keystore?

A debug keystore which is used to sign an Android app during development needs a specific alias and password combination as dictated by Google. To create a debug keystore, use: $ keytool -genkey -v -keystore debug.

What is the password of Android debug keystore?

You can do this with the SHA1 fingerprint in your developer's key and the package name. The debug keystore is typically located at ~/. android/debug. keystore and its password is android .


1 Answers

In command line type

cd %USERPROFILE%/.android 

You can find debug.keystore in this location

like image 177
nandeesh Avatar answered Sep 19 '22 06:09

nandeesh