Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android Studio - debug keystore

Does Android Studio sign debug builds? If so, where is the keystore it uses to do it?

like image 676
fasteque Avatar asked May 18 '13 09:05

fasteque


People also ask

Where is the Android debug keystore?

The default keystore file: debug. keystore is present in the folder . android which is usually located in the default home folder of your operating system of the user who installed that Android SDK.

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 debug keystore?

Usually the debug. keystore password is just "android". You can delete it and Eclipse will automatically generate a new one, as described here.


2 Answers

It is at the same location: ~/.android/debug.keystore

like image 163
user2396466 Avatar answered Oct 19 '22 22:10

user2396466


If you use Windows, probably the location is like this:

C:\User\YourUser\.android\debug.keystore

like image 30
Fernando JS Avatar answered Oct 19 '22 23:10

Fernando JS