Barry Fruitman
Barry Fruitman

Reputation: 12664

Install custom .apk without adb/Eclipse

Is it possible to install an .apk on a phone without using developer tools? Can it simply be dragged to a mounted SD card? My beta testers are not very tech-savvy or comfortable with the command line.

Thanks in advance,

Barry

Upvotes: 4

Views: 5918

Answers (3)

Chris Lacy
Chris Lacy

Reputation: 4462

  1. Copy the .apk file to DropBox (or any other cloud storage program. Box is another popular one).
  2. Load DropBox on your Android device, navigate to the location of the .apk file and click Export.
  3. Choose a location on the SD card to copy the .apk file to (eg /downloads).
  4. Use a file explorer program (I use ES File Explorer) and navigate to the location on the SD card where you exported the .apk file to in step 3.
  5. Click the .apk file, which will install the application to your device (Note that you will have to turn on 'Unknown Sources' so that non-Android Market apps can be installed on your device if this setting is off).

Upvotes: 4

Chris Thompson
Chris Thompson

Reputation: 35598

You can install it from an SD card if you have a file browser on the phone, or you can download it via a webserver using the browser.

Upvotes: 3

Matt Ball
Matt Ball

Reputation: 359986

You could set up a web server that hosts your APKs. N.B. it would need to send .apk files with the right MIME type: application/vnd.android.package-archive.

Upvotes: 1

Related Questions