Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Private Android Application deployment/installation?

is it possible to create an android application that is meant only for internal use? Basically a private application not meant to be installed by non-approved phones?

If so what is the basic process of deployment? How do you get the app on the employees phone's?

thanks!

like image 658
billy jean Avatar asked Jul 18 '11 22:07

billy jean


People also ask

How do I distribute an APK without Google Play?

Distributing your apps by email To do this, you prepare the app for release, attach it to an email, and send it to a user. When the user opens your email on their Android-powered device, the Android system recognizes the APK and displays an Install Now button in the email message.


1 Answers

The easiest way is to email it to them. Any email with an .apk attachment will get an "Install" button that you can tap to install the app.

Installing from non-market sources needs to be enabled -- which is a bit of a security risk -- but the user will be prompted to turn that on if they need to, and even given a button that will take them right to the appropriate settings page. The whole process is really quite slick. :)

Alternatively, you can copy it to the phone (e.g. after connecting the phone in USB storage mode) and then use a file system app to locate the file and install it.

Emailing it is the easiest way, however.

Edit: I'm assuming you meant private as in "only sent to certain individuals" and you're not actually looking for a method that will prevent the apps from being run on non-approved devices should they end up on one.

like image 78
Lorne Laliberte Avatar answered Sep 25 '22 23:09

Lorne Laliberte