I don't remember my android debug.keystore password
Asked Answered
C

5

169

How can i see my debug.keystore password? I entered my password 3 or 4 month ago and now i don't remember.

If it is impossible, how can i create new debug.keystore?

Corporeal answered 17/9, 2012 at 9:29 Comment(0)
D
383

Usually the debug.keystore password is just "android".

You can delete it and Eclipse will automatically generate a new one, as described here.

Distinguished answered 17/9, 2012 at 9:34 Comment(5)
okay i try delete keystore and clean my project. adt created a new keystore, well what is default alias name?Corporeal
i tried your suggestion it gives me error; Enter keystore password: keytool error: java.lang.Exception: Alias <aliasname> does not exist java.lang.Exception: Alias <aliasname> does not exist at sun.security.tools.KeyTool.doPrintEntry(Unknown Source) at sun.security.tools.KeyTool.doCommands(Unknown Source) at sun.security.tools.KeyTool.run(Unknown Source) at sun.security.tools.KeyTool.main(Unknown Source)Corporeal
can you paste the line you typed ?Distinguished
Default alias is androiddebugkeyExtradition
Welcome to the android developer experienceChud
G
166

The Default Configuration of debug.keystore file:

Keystore name: "debug.keystore"
Keystore password: "android"
Key alias: "androiddebugkey"
Key password: "android"
CN: "CN=Android Debug,O=Android,C=US"

Where is this file located?

For Windows users: C:\Users\[username]\.android\debug.keystore

For macOS users: ~/.android/debug.keystore

You can get the SHA1 by using the following command:

keytool -list -v -keystore "C:\Users\[username]\.android\debug.keystore" -alias androiddebugkey -storepass android -keypass android

Note: The above answer has just information of Android Studio's default configuration to access the debug.keystore (debug certificate). You can make a custom certificate if you want to use your own password or configuration.

Grainfield answered 17/3, 2017 at 13:34 Comment(1)
Just FYI there is typo in Window path. You need the backslash after [username] C:\Users[username]\.android\debug.keystoreParlormaid
S
6

If you are not certain that the password has been set before, try just empty password. It worked for me.

Shuttle answered 23/12, 2016 at 10:6 Comment(0)
G
3

Again you can generate your google api key. Your .keystore file will be, In Eclipse, Windows -> preferences ->Android -> build ->default debug keystore path will be there. You just use that .keystore and generate your api key again by using this link:

http://lokeshatandroid.blogspot.in/2012/05/obtaining-google-maps-api-key.html

Gehring answered 17/9, 2012 at 9:44 Comment(1)
Then you would need new oauth client id's. Easier to keep using the same keystore.Dyedinthewool
I
0

What i did was create signed key, I was able to observe this when i read the errors probbaly https://reactnative.dev/docs/signed-apk-android

Iminourea answered 15/10, 2020 at 9:2 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.