Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android - how to make trial version of android app?

Tags:

android

In my application i want to implement a trial and full version functionality for my application. In this trial version will be available to all and full version will be available to users who paid the full version. So please suggest me the ways by which i can implement such functionality?

like image 281
Naveen Chauhan Avatar asked Jun 19 '12 09:06

Naveen Chauhan


2 Answers

There are two ways to do this, that I can think of:

  1. Build 2 versions of apk files and publish twice to Android Market.
    • One will be trial version, with advertisements enabled OR with limited functinality
    • Second will be available as a paid app, with full functionality unlocked.
  2. Release the app as a trial version, and add support for in app purchases that will unlock full functionality of the app. This is usually referred to as a Freemium (http://en.wikipedia.org/wiki/Freemium) type of App.

I recommend the second way as the user will have to download the app only once.

Refer to Android's In-App Billing Documentation here : http://developer.android.com/guide/market/billing/index.html

Hope, this helps. Cheers!

like image 167
Hari Krishna Ganji Avatar answered Oct 21 '22 23:10

Hari Krishna Ganji


The other answers is not what I would call a "Trial". The outlined solutions are more like a "Lite" vs "Pro" app approach.

I think of a trial as a full featured app that expires after X days/weeks.

like image 20
Camille Sévigny Avatar answered Oct 22 '22 01:10

Camille Sévigny