1

I made my first android app and it works on the emulator.

But now I want to test it on my phone and I can't find the apk file. Do I have to make it and how do I do that?

zoran404
  • 1,682
  • 2
  • 20
  • 37

5 Answers5

3

Just check the bin folder of your Project source code folder.

Mohit Verma
  • 3,025
  • 1
  • 20
  • 36
1

In eclipse right click on your project and in that menu select Android tools->Export signed Application package .

And In that appearing dialog follow the instructions.

Michael Grubey
  • 183
  • 1
  • 2
  • 16
1

followin way to find .apk build file...

  1. open your project
  2. open "bin" folder
  3. get your project's build (.apk) file.

You show in Image where it is.

enter image description here

Mr.Sandy
  • 4,299
  • 3
  • 31
  • 54
1

You can find last build apk file in this directory : /projectFolder/bin/yourapp.apk

here yourapp.apk is just an example

OR

you can do something following

1.right-click the project in the Package Explorer

2.select Android Tools > Export Signed Application Package.

3.Then specify the file location for the signed .apk.

dharmendra
  • 7,835
  • 5
  • 38
  • 71
0

check Bin folder in project structure OR attach phone with debugger on & run on phone OR Right click on project & andorid tools -> export sign package

R World
  • 766
  • 9
  • 26