Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

8
  • 6
    @atourney: You would have to copy the previous machine's keystore (e.g., debug.keystore) to your new machine. Commented Dec 14, 2010 at 11:05
  • 12
    Note that the debug.keystore is not in your project directory. It is normally in your ~/.android/ directory. (see developer.android.com/guide/publishing/…) Commented Feb 10, 2011 at 6:52
  • 3
    How could one give the debug package a different name? (e.g. {PRODUCT_NAME} Dev) Commented Sep 22, 2011 at 10:46
  • 6
    @ChristianBongiorno: Synchronize your signing keystores (e.g., debug.keystore). Pick one to be your master keystore, copy it to all the other developer machines, replacing their existing keystore. Commented Jun 19, 2013 at 21:36
  • 2
    Don't forget to rebuild your project after copying the file across too. I moved the files and re-sent the application to the device (but it was still using the old debug.keystore). Once I rebuilt the project (using Build->Rebuild in Android Studio) the keys were then in sync. Commented Jul 18, 2013 at 6:12