Eclipse for Android: how to automate the "Export Android Application" in apk?

I am working on an Android project using eclipse. I can not check it in the emulator because of the sensor, and therefore I have to quite often export to the APK file. The problem is that creating an APK file requires more than 10 clicks and entering the (same) password twice (which I often make mistakes).

I am wondering if there is a way to automate these steps. or is there a command line equivalent for these steps?

+7
source share
2 answers

If you need an APK file for testing, then you can use unsigned APK.

Right Click Project -> Android Tools -> Export Unsigned Application Package 
+1
source

if you need .apk, you should find it in the bin directory of the project folder, after starting your application.

+1
source

All Articles