Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Using the same debug keystore on multiple computers

I'm developing on multiple computers. If I deploy to my phone directly from Eclipse on one computer, I can't deploy from the other without uninstalling first. I'm assuming this is because there is a debug certificate being used to sign the app, and they're not the same across the two machines.

Is it possible to copy one over to the other so that Eclipse is using the same one on both machines?

like image 726
Rich Avatar asked Oct 13 '10 14:10

Rich


People also ask

How do I change my default debug keystore?

EDIT Step 1) Go to File > Project Structure > select project > go to "signing" and select your default or any keystore you want and fill all the details.

What is a 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 debug keystore password?

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


1 Answers

Yes.

In Unix like os the debug key is located by default in ~/.android/debug.keystore

You also can choose a custom one from eclipse like in the following screenshot: alt text

like image 135
Macarse Avatar answered Oct 12 '22 12:10

Macarse