By default, apk is in bin, and thatβs correct, but when you distribute the source code, itβs best not to add any apk, because a βfreshβ compiled apk is always the best solution.
if you have a file called build.xml in the root of your project, just do
ant debug
otherwise, you need to update your project with the minimum information needed for the construction phase using
android update project -t android-10 -p .
in this case, android-10 is the target of your apk / app / api, and you can configure this setting for your target device.
After that, you will get your build.xml and everything will be created to create apk.
source share