How to launch an Android application in eclipse using a signed key?

Is there a way that I can provide the signed key to the builder and allow the device to directly create and install on my device using the signed key? or do I need to export the application manually and select a key, enter a password, and then install it on my device manually?

So the simple question is: is there a way to use the signed key when creating the application in eclipse (which automatically installs it on the device)?

Please note: I am not asking how to debug it, I just need to run it directly from eclipse to the device using a signed key.

+4
source share
1 answer

I have never done this, but according to the docs, you can. You must configure it this way by specifying the path to the keystore and password. But it seems that as soon as you configure it, then it will be easy and will do everything you need.

Run in release mode

Here is also a SO post.

+2
source

All Articles