Skip to content Skip to sidebar Skip to footer

Can't Find Apk File

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?

Solution 1:

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

Solution 2:

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

Solution 3:

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.

Solution 4:

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.

Solution 5:

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

Post a Comment for "Can't Find Apk File"