43

I downloaded the APK file for an app to my PC. How can I install it on my phone?

Izzy
  • 91,166
  • 73
  • 343
  • 943
Nathan Fellman
  • 5,464
  • 19
  • 56
  • 78
  • 10
    In addition to the answers below, you need to allow for non-Market apps to be installed. That setting can be found at Settings | Applications | Unknown sources – ale Feb 02 '11 at 14:23
  • 2
    On ICS the setting has moved to Settings | Security | Unknown sources – THelper Oct 12 '12 at 07:53
  • Are you sure that's also required for adb install? – Izzy Jun 24 '13 at 19:14
  • In a simple way You can also download app directly from url http://domain.com/build.apk on your mobile and install it. – Ramesh Chand Mar 12 '16 at 05:21

8 Answers8

30
  1. Use DropBox. Put the APK in your DropBox folder. Open up the DropBox app on your phone, find the apk, tap on it, and it should download it to your phone and then install it.

  2. Use the SD card. Plug your phone into the computer via USB. Mount the SD card drive. Copy the APK into the SD card. Unmount your phone. Browse to the APK using a file browser app such as Astro. Tap on the APK and it should present to install it.

There are countless other ways to do this, but these two are probably the easiest.

ale
  • 19,723
  • 34
  • 110
  • 159
Bryan Denny
  • 21,906
  • 20
  • 78
  • 98
13

Another way...

  1. Place the .apk file onto your SD card (by using your phone as a mounted drive).

  2. Enable applications from unknown sources (go to Settings > Applications > then verify that Unknown Sources is selected).

  3. Use an application such as Installer or APK Manager to install the application.

gary
  • 5,620
  • 4
  • 41
  • 60
11

I prefer using the ADB. However, It's a little less user friendly. This isn't the easiest way, but it will work without an SD card and will work without the device being internet connected(some devices(tablets) aren't).

At the command line you would type:

adb install "full-absolute-path-to-apk-here.apk"

The "tools" directory of the SDK must be in your path for the adb command to work.

John
  • 721
  • 2
  • 12
  • 27
2

You need two other applications from the market to to this

  • A file browser (astro, ...)
  • A application installer (appinstaller, ...)

First, you must go to Settings -> Applications -> check "install application from untrusted sources"

Then, you can navigate to the apk file (you must have copy the apk file to your SD card) with the file manager and launch it with appinstaller

Nicolas NOEL
  • 447
  • 4
  • 6
  • Because you can't install a apk file with the market. – Nicolas NOEL Feb 03 '11 at 07:44