Question

I want to install the Amazone2.2.apk on my emulator and want to run it from my automaton script for testing. For this we have to resign it. Could you please let me know how i can do this? I have done same thing with evernote successfully but it is not working for amazone. while installation of amazone2.2.debug.apk i am getting eror:

73 KB/s (3882442 bytes in 51.512s) pkg: /data/local/tmp/Amazon_2.2.2_debug.apk Failure [INSTALL_PARSE_FAILED_NO_CERTIFICATES]

Query: Install Amazon.apk to debug it.

Was it helpful?

Solution

To sign an APK with a debug certificate, use testsign.jar. The usage is very simple and doesn't require you to even create a test key.

Usage: testsign input.jar [output.jar]

You would use something like this:

java -jar testsign.jar Amazon_2.2.2_debug.apk Amazon_2.2.2_debug-signed.apk

adb install Amazon_2.2.2_debug-signed.apk

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top