Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android: how to install apk on device, without using android sdk tools

I have built my app into a signed SDK. I would like for beta testers to be able to install this on their devices without having to install and use the android sdk tools (I realize the apk can be installed with command line tools, but would prefer that not be necessary).

I tried manually installing it, but it failed. I have an android tablet that I am using for testing. I copied the apk to my device's sdcard, and clicked on it. Which gave the option to install it with the App Manager. Unfortunately the install fails with message "Application not installed".

Is there a way to manually install an apk, without using the command line tools?

like image 963
ab11 Avatar asked Dec 08 '10 17:12

ab11


People also ask

Is it possible to build apps without an SDK?

It is not possible to build an Android app without using SDK. Take a look at this answer. If you want to build an app without using an IDE though you can read about it for example here and here. Save this answer.

Can I install APK without manager?

So if you've got Flashtool installed on your computer, you can also install APK's without the Internet nor a file manager.


2 Answers

Upload it to a Web site that is configured with .apk for the right MIME type (application/vnd.android.package-archive). Anyone clicking the link to your APK in their browser will be able to install it.

Some services have this built in. Dropbox, for example, knows about APK files, as I understand it.

like image 81
CommonsWare Avatar answered Sep 18 '22 01:09

CommonsWare


You can put the apk file on a server. On the device/emulator open the browser and download the apk and now u can tap on the downloaded apk and install it.

like image 29
Varun Avatar answered Sep 19 '22 01:09

Varun