Possible Duplicate:
Is there a way to automatically update application on Android?
I have an android application. my user install it. how can I notify the user that a new version is available.
my application is not in Market.
thanks in advance.
Possible Duplicate:
Is there a way to automatically update application on Android?
I have an android application. my user install it. how can I notify the user that a new version is available.
my application is not in Market.
thanks in advance.
There are two models that are basically used to tackle the issue.
Its depends on the architecture or design of particular system that determines whether pull based or push mechanism is used.
If you already have users using your application, and you want to notify them, as far as i can tell:
If your application does not already have built in system to check for updates, there is no way for you to know where (on which device) your application is deployed, therefore you cannot notify users about new version...
To overcome this in future, you should include link or button in your application preferences, that will check for new version when user clicks it...
If you are only starting to develop application: C2DM is the sollution. Check answer from relsell for details.
Check out this project from CommosGuy: https://github.com/commonsguy/cwac-updater
It is an updater to update your application outside of the Google Play / Market
This is exactly what you are looking for