0

After a lay off, I migrated my Android development from Eclipse under Windows to a new machine with Android Studio running under Ubuntu.

Because I wished to port an existing project using Google Maps v1 (which no longer issues new API keys) I copied the release and debug keystores to the new machine.

Under Eclipse there was no need to know the location of the debug keystore which was created automatically and debug loads signed with it.

Under Android Studio, does the same principle apply? If there is a system created debug keystore, where is it, or do I have to define one explicitly?

1

2 Answers 2

6

As described here in the documentation: http://developer.android.com/tools/publishing/app-signing.html

You can find the debug keystore in $HOME/.android/debug.keystore

Sign up to request clarification or add additional context in comments.

1 Comment

Thank you, it's in the same place as for Eclipse. I don't know why I didn't think of looking there. Edit: Oh yes I do know why - I put Eclipse on first and must have assumed that it was solely for Eclipse's use
1

Yes, a debug.keystore file is created for you by Android Studio. It is in your user home directory under .android/debug.keystore (i.e., on Linux/Mac at ~/.android/debug.keystore

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.