I've built an android app which is now on Play Market. From time to time, I make updates to it, and I'll like to make users know that a new version is available.
How can I send notification update to the users of the app?
|
I've built an android app which is now on Play Market. From time to time, I make updates to it, and I'll like to make users know that a new version is available. How can I send notification update to the users of the app? |
|||||
|
|
You do not need to do anything specific for this. Since you mentioned that you are using Android Play, the update notification is taken care by Android Play. You need to just update the apk with higher versionCode and Android Play Market should do the rest. |
|||||||||||||
|
|
Use this : https://www.push-link.com/ |
|||||
|
|
|
You can do this in a lot of ways, depending on when you want the user to be able to see that there is an update available. If you want the user to know about the update when the app is started, just create a utility method (inside the If you want the user to get a notification on the phone (and not when the user starts the app), you can use the Of course, another approach is to leave it to the OS itself. If the user has not set the "Automatically update" preference for your app, the user will get a notification regularly about an update available for your, as well as any other apps. But not all users enable background data on their devices, so this is not completely reliable. In the end, you must respect the users preferences. If the user does not want to automatically update the app, or does not want to see a nagging dialog box whenever he/she starts your app, don't alert the user about the update. In my opinion, you should create a I hope this helps! |
|||||||
|
|
It is up to each phone owner if she wants to be notified on new versions by google play, and it's up to each phone's manufacturer if this is to be enabled by default. If you however are in a situation where you "require" the user to update to the new version to be compatible with some form of protocol or you have a similar similar use case where you have a server component somewhere, you might want to notify the user of a potential version conflict in the UI based on information about what is the latest version. This information can be grabbed directrly from google play, however as @Yahel pointed out in this question google play is a closed system with no official API, and you might need to rely on unpredictable undocumented API. There is an unofficial API library here. This leaves only one option, which is to keep this information on your own server. If you allready have a serverside this might be trivial. Simply put the latest version in an XML file and retreive that at regular intervals from your code. If the version code is outdated, trigger the notification in your UI. Here is an example implementation for doing that. I hope this was helpful :-) |
|||
|
|
|
Google Play will notify your users that the app has an update via the notification bar. If you set up a notification system yourself, the likely result would be that, although the user is notified of an update sooner, when he/she goes to Google Play to install the update it will not yet be available. This is because there is a lag from the time you "publish" an app/update and the time until it appears on Play. Telling your users that there is an update when the update is unavailable would only lead to confusion and frustration. My advice: stick with Google's update notification system and don't worry about trying to get users an update 15 minutes sooner. |
|||||
|
|
Some people use Android Cloud-to-Device Messaging (C2DM) to notify their users of updates. I don't think I'd bother, since I think Google Play does a pretty good job of notifying me of updates already, and implementing C2DM adds a whole new dimension to writing an app (because it requires a server component). But maybe you want to offer your users a richer update notification than you get from Google Play. |
|||
|
|
|
Don't know if you want to walk extra miles. You can try out google appengine, which serve version number for your app and let you android app check the appengine to see if there is a new version when the application is launched. That way, it does not matter if your app is in google play market nor amazon app store nor if it is installed on the phone without those two via sideloading. It is not very hard to setup appengine just for serving your application version in json. Replace "Hello World" string with your app version name ... |
|||
|
|
|
This can be using a simple webservice just this is one of the way to acheive. i.e., when ever the app launch hit that webservice with the current version of the user app and on the server you need to check whether any new version is available or not(Must maintain the newest version of the app) and send the corresponding response to the user. If any newer version is available prompt the user to download the newest version of the application and if no newest version is available then allow the user to continue. Hope so atleast something must be useful to you. |
|||
|
|
When you re-upload your app to Google Play, if these two attributes have been changed from the previous upload, Google Play will automatically send notifications to users who have installed your app. This is the AndroidManifest file. |
|||
|
|
|
@Davek804's answer above is wrong. android:versionCode is an integer value that represents the version of the application code, relative to other versions, so using "1.5b" there is incorrect. Use "15" (or "150") instead |
|||
|
|
|
Generally when you upload a new application to Google play most users get a notification about an update, some will have the app automatically downloaded to their device, depending on the settings they have. If you seriously want to make a notification from your app to ask them to update (so that everyone gets the notification, whatever their Google play settings are, then you will have to make a web service which returns the number of the newest version. You can then compare that inside your app and post a notification. You could use Google App Engine ( https://developers.google.com/appengine/) because that works with eclipse and java, which you probably already have. I would not recommend this approach as it creates a lot of work for you to provide something that most users have already got. |
|||
|
|
|
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. For pull based model you just make one http request to concerned server regarding the new version of application. The current application version no can be saved in SQLLite in android application. This can be given to server and new version can be checked against it at the server. For push mechanism you can use C2DM push notification service.. details of which are given at http://code.google.com/android/c2dm/ |
|||
|
|