Search code examples
androideclipseandroid-emulatorcode-signingandroid-keystore

Sign my android project


I want to sign my android project using eclipse with a debug keystore file and be able to run the project on my emulator directly by clicking the Run button on eclipse ide. I have read the tutorial to export the apk from eclipse and sign it with a keystore file and then using the adb command line I can run that apk to my android emulator. But is it possible to directly just run the project from eclipse and somehow it should sign the application with the keystore file?


Solution

  • But is it possible to directly just run the project from eclipse and somehow it should sign the application with the keystore file?

    Eclipse will automatically sign your app with the debug signing key when you run it from the IDE. No additional configuration is necessary

    I want to sign my android project using eclipse with a debug keystore file and be able to run the project on my emulator directly by clicking the Run button on eclipse ide.

    That is how Eclipse works when it is installed.