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
- Copy the .apk file to DropBox (or any other cloud storage program. Box is another popular one).
- Load DropBox on your Android device, navigate to the location of the .apk file and click Export.
- Choose a location on the SD card to copy the .apk file to (eg /downloads).
- 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.
- 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).
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.
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
.
精彩评论