1

I just finished compilling my android application using android studio. But the output was a zip file, not an apk file as i expected. Will the zip file work on android device just like an apk file? Or is there something that i'm missing.

Isaiahiroko
  • 994
  • 7
  • 12

1 Answers1

0

Check on your project's location on your computer for

"out/production/..."

IntelliJ stores the apk there.

You can find more answers to your question in here

Community
  • 1
  • 1
moud
  • 729
  • 9
  • 19
  • thks Mood. My android studio saved the apk file in build/apk/-debug-unaligned.apk. Why is the debug-unalighed appended despite the fact that i signed the app before compilling – Isaiahiroko Oct 16 '13 at 11:11