Where is my apk file? I have made an app and a library project that it depends on. It loads in the emulator fine...
But there is no .apk file in bin/
Isn't this where it's supposed to be?
Where is my apk file? I have made an app and a library project that it depends on. It loads in the emulator fine...
But there is no .apk file in bin/
Isn't this where it's supposed to be?
The apk should be found under bin/
folder. Make sure you compile, and not just build the
project: How to build an APK file in Eclipse?
EDIT As Chris kindly pointed out, bin/
is generally found under your project directory, e.g. path/to/projectdir/bin
I have made an app and a library project that depends on it
The apk is only generated if you are making an app. As far as I know, projects marked as library don't generate the apk.
Maybe you can generate it manually by exporting the project as an Android application.