Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to Deploy Android Application to Beta Tester Devices

My android app is not in the app store yet. Is it possible to send my app to someone, and they install it on their device. Something like iphone AdHoc?

like image 603
aryaxt Avatar asked Jun 26 '10 01:06

aryaxt


People also ask

How do I distribute Android apps for testing?

Distribute your app to testersOn the Releases page, select the app you want to distribute from the drop-down menu. Drag your app's APK file to the console to upload it. When the upload completes, specify the tester groups and individual testers you want to receive the build. Then, add release notes for the build.


4 Answers

You can email them your APK. Of course, there are several drawbacks to doing this.

  1. There is not any built in copy protection to lock an APK to a single device so a tester could redistribute your application without your consent. This is something that you will need to deal with even once you are using Market to distribute your application. If you select "Copy Protection On", people will still be able to get at your APK as many people have rooted devices and all this option does is influence where the APK is installed. Google advises, "you may also implement your own copy protection scheme" and I think it's prudent.

    Add the READ_PHONE_STATE permission to your manifest so you can retrieve the phone's IMEI, send to your server, and determine if a user should be allowed to run your application.

    TelephonyManager telephonyManager = 
        (TelephonyManager)getSystemService(TELEPHONY_SERVICE);  
    
    String imei = telephonyManager.getDeviceId();
    
  2. Your testers will need to enable "Unknown sources" to allow install of non-Market applications.

  3. Assuming your tester uses Google as their email provider, it is important to note that the Android GMail application doesn't handle APK attachments properly. While this might confuse the recipient of your email, there are easy work-arounds:

    • Tell them to use the Browser app to download your attachment through the web interface.
    • Have them download APKatcher first.
like image 171
Tim Kryger Avatar answered Oct 22 '22 11:10

Tim Kryger


Starting in May 2013, Google added Beta and Alpha programs to the Developer Console. You can now upload an APK to either channel and interested users (or users belonging to the specified Google+ Communities or Groups) can now get the application from the Market just like a regular app.

Users cannot provide public feedback so you have to provide them an alternative way to contact you.

At any given time, you can promote (or demote) an app to/from beta/alpha or even Production.

Here's how mine looks:

Google Developer Console

like image 41
Martin Marconcini Avatar answered Oct 22 '22 10:10

Martin Marconcini


Effective beta apk distribution, getting crashes as well as feedback from early adopter is known problem in android community. To solve this problem we built a platform Zubhium for developers by developers.

  1. Just upload apk and email address of users whom you want to distribute beta , and click send. That's it . :)

Platform will invite users and keep a track of who, when and where downloaded, Also it will followup with users who downloaded beta for feedback. You can view , reply , communicate back with users from platform.

Optionally you can integrate crash reporting services to get crashes during beta. It will provide granular details like network, device info with exception details. It does bunch of other stuff also.

Have look at www.zubhium.com

like image 40
Daven D Avatar answered Oct 22 '22 11:10

Daven D


There's already an accepted answer three years ago, but let me share a simpler way to deploy your app in present: DeployGate.

With DeployGate, you can deploy your app to your own (or your colleague's) device, in a matter of seconds. All you have to do is uploading your APK file, then send a link or scan a QR code (two-dimensional barcode) with the device. To update, just upload the app again then it will be pushed to all installed devices.

It's carefully designed to eliminate waste in your daily development. The agent app will guides you and/or your colleagues throughout the app installation process, so you can avoid almost all problems you might face, especially if they are non-tech guys. You can even shortcut typing email address and password to associate an account with your devices, just click a button shown on the browser instead. If you want, you can also catch app crashes with a single line of code integration. It magically works to help you keeping your focus on development.

Disclaimer: I'm working on this product. :)

like image 2
tnj Avatar answered Oct 22 '22 09:10

tnj