Android :: Android Market Application Updates

Feb 1, 2010

Quick question about android market application updates. If I have an app on the market and release an update, is there a way to ensure that the users download the new update?I.e. Does the app tells the user there is an update, or does it stop working until they download an update?Or should I be writing code in my apps to stop working after a fixed period thus forcing the user to download the new version?

Android :: Android Market Application Updates


Android :: Off-Market Application Updates

Jun 24, 2010

I am curious about the procedure for updating an app that was acquired off the market. Do you simply install over your existing app? And if so, what happens to your existing data?Is there a way to tie your installed apps to the market, so it can automatically check for updates? Any information is appreciated.

View 2 Replies View Related

Android :: App Updates And Market

Aug 23, 2010

Anyone know if I release a test version of my app to some BETA testers without publishing it on the market, and later publish it on the market with an updated version number, if the BETA testers will then get a notification from the market that there is a new version available?

View 5 Replies View Related

Android :: Automatic Market Updates

Dec 16, 2009

Does an app developer need to do something peculiar in code to get a newer version of an uploaded app to show up in the notification bar on installed users' phone?I am reading comments that vary wildly and I can neither determine if the message content I am reading is relevant or current.With the pace of change in Android, perhaps we should filter messages older than a year from results? :)

View 7 Replies View Related

Android :: How Often Phone Will Check On Market For Updates?

Sep 9, 2010

is there a setting somewhere on the phone that controls how often the phone will check on the market for updates to apps you already have installed? If not, what is the default, as in how often does the phone check?

View 3 Replies View Related

Motorola Droid :: Duplicate Updates In Android Market

Dec 12, 2009

Is anyone else getting what appears to be duplicate update notifications in the market?This has been happening to me for the last 2 days for Astro File Manager, and Panda Home.I have the latest versions installed.Yet the market tells me there's an update available.When I look at the version number of the update, it's the same as what I have and when I install it, the version numbers wind up being the same.Is this really an issue, or are the authors really throwing new apk's up there with the same version number? Or is there some 'minor' version number they're updating that isn't visible to me, and there really are small tweaks in the update?Curious if anyone has seen multiple updates for these in the last few days, and whether anyone knows what's really going on.

View 4 Replies View Related

Android :: No Auto Updates Or Release Notes For Market Apps

Oct 30, 2008

I have recently updated about 10 apps manually that I already had on my G1, since I saw them relisted in the market (again) but higher up on the "by date" tab.This system is horrid.If a user has an app and a new release comes online it should not only notify the user it should offer to auto update and the first screen that pops up should be a release notes screen so we know why it was updated and what to look for.Another more minor annoyance is that devs seems to lose track of download counts and comments in new vers. This is much more minor, but useful to both the community and the device.If anyone from Android peeks in here, hopefully this makes a list of suggested improvements.

View 9 Replies View Related

Android :: Way To Know Application Updates

Jan 26, 2009

I easily missed application updates I use. Is there any way to get update notification for each applications I installed? of should I check "My downloads" list occasionally?

View 4 Replies View Related

Android :: Publishing Android Updates To Market / How Long Till They Appear?

Nov 4, 2010

On Tuesday, I released my first app to the Android Market. Since then I found a few bugs which I have fixed and uploaded a new version.In the Developer Console, it still shows the version number as the original (v0.8.0) but the last version uploaded is different (v0.9.0).If I check the market on my phone, then the update is not even showing.How long before they show?Can I check if there are any errors with my upload process? Does a different filename for the apk matter?

View 2 Replies View Related

Android :: Provide Updates For Application?

Apr 13, 2010

Hi,

I'm planning to use my website to provide updates for my android application whenever the user decides to perform an update( in case there is one available) . I'm thinking to use http requests for the communication between the user and the server, so whenever there is a new update the server sents back to the user the link to download the apk of the update through the android browser. So far I think it should work !?!. But once I have the apk of the new update on the card ,and the installed old version of the application how do I actually perform the update ?

View 2 Replies View Related

Android :: Application Handles Updates?

Apr 13, 2010

How an android application handles updates ? What kind of information does the application usually needs to send to request an update, and what does it receives back ?

View 1 Replies View Related

Android :: Android Market / Time To Wait Between Two Updates

Sep 2, 2010

I would like to know how many times I must wait to post an update for my application.I want to be sure that the update will appears in the "news" section of the Android Market.

View 4 Replies View Related

HTC EVO 4G :: Market Does Not Notify About Updates

Jun 23, 2010

i remember on my touch pro with XDA, the market automaticly notified me about app updates as soon as they happen, and that hasn't happend once on my EVO i have had to manualy check everytime, i have the settings set to notify. is there something i am missing?

View 7 Replies View Related

HTC EVO 4G :: Market Updates Not Installing

Oct 29, 2010

My Evo has been selectively updating my apps for the last two weeks.10 total so far. The market version I have is 1.82 and according to the market troubleshooting page the current version is 2.07 for anyone OVER Android 1.6. So is that my problem? I know its supose to auto update but I tried to force it by doing what the troubleshooting page says and nothing, still on 1.82. The only thing that seems to fix this is to uninstall then install it like its new. I've already lost progress on one game and don't feel like doing that again. Any suggestions? Sprint is no help cuz its a market issue.

View 10 Replies View Related

Android :: Application Updates - Appbrain And Sync

Jun 22, 2010

I had thought that appbrain is more or less of a mirror of market. How come sometimes I got into appbrain and sync and it shows me no updates, but they I go into the market and it does show updates for some apps?

View 3 Replies View Related

Android :: Turning Off GPS Updates When Application Goes Into The Background

Nov 2, 2010

I'm having a problem when trying to stop location updates when the app goes into the background. In my onCreate() method I start request updates like this:

CODE:........

However the GPS icon remains in the status bar and the only way to get rid of it is to manually kill the application.

View 9 Replies View Related

Android :: MVC - Application Or Service For Asynchronous Updates

Jul 3, 2010

I have data that is to be refreshed from the Internet. Let's call it Model.

What I want to do: Basically it sounds like an MVC model, where the Model is also kept persistent in local (private) storage. The Model and its associated methods are application-wise. There are several Activity's that display and manipulate different aspects of it:

User
navigates across different Activity's
that display Model
from different perspectives. Currently I have a ListActivity for all elements, and an Activity for one element's details
Sometimes Model needs refreshing.
Surely this is done on a different thread. Refreshing can be triggered from several Activity's.
There are several (time consuming) common
tasks that can be triggered from different Activity's
My application loads and saves Model
to private storage when it starts
and stops

My problem: I'm not sure where to put Model and the related tasks in. Also, I don't know what mechanism to use to notify Activity's. Currently I come up with 2 approaches:

Use Service and send broadcasts. Saving to disk is performed in Service#onDestroyed(), so I want to minimize that by binding it to Activity's. At this point, I'm also not sure how to deliver the updated information: whether to provide a getter in Binder, or include that in the broadcast message.
Customize the Application object so that refreshing methods and getters are available globally. I then perform update from Activity's using AsyncTask. If there are other Activity's that are behind the current Activity, they will update in onResume() when the user navigates back.

Reasons I'm not using a class with static methods:

I need to save and store Model to disk. Some of the methods need a Context for displaying toasts, notifications, caching, etc.


Also, I don't put these functionalities in an Activity because there are several activities that manipulate the same piece of persistent data.

Below are pseudocode illustrating what I mean:

Using Service:

CODE:............

Make the functionality globally accessible in the custom Application object

CODE:...........

Weaknesses I can think of for the Service approach is complexity, since Binding is asynchronous. And it's very likely that I have to repeat some code because I have both ListActivity and Activity

For the Application approach, the documentation says not to rely on onTerminate() being called.

View 3 Replies View Related

Android :: Handle Application Versions/updates

Mar 1, 2010

I'm pretty new to Android, and I had some questions that I've had trouble getting answered via the web. I have done a few searches, but I'm not sure how to word my question, either. So I apologize if this has already been covered somewhere...but here it goes. I was wanting to know how the Android handles application versions/ updates. Specifically, does an update blow away my database? Is there a way to preserve the users' settings as well?

View 5 Replies View Related

Android :: Application Widget - How To Manage Updates?

Nov 8, 2009

In the process of creating an AppWidget which displays data from a remote host, I am looking for documentation about how to manage updates. Are there articles somewhere about how and when querrying remote data is the most appropriate? I am wondering if we have to explicitly code the remote queries in a separate thread, or even do it in a separate service, to avoid freezes of the home screen (this happens a lot on my htc magic).

View 3 Replies View Related

Android :: Providing Updates To Unpublished Application - Old Users

Aug 19, 2010

providing updates to unpublished application( old users)

Lets say we have a PAID app - "x-some". 1000+ users downloaded and using it, before 28-Feb-2010. we stopped for some reason from 01-march-2010, by "unpublishing the app" from market.

however, we found some bug in x-some and want to fix it and also to be available to only 1000+ users who already downloaded it. We dont want this app to be seen by new users. Only old users( who downloaded this paid app), should be able to view it and download the new fix.

View 8 Replies View Related

HTC Incredible :: Occasional Market Updates ?

Nov 9, 2010

Every so often when I'm updating applications from the market, they fail to install after downloadIng completely. I install them again and it works, but the initial update doesn't work. Why is it doing this? The download location? I do have a sd card in the incredible from my previous phone, the droid, would that be the problem? What can I do to update apps without having to worry about redoing each failed install? I'm not rooted. Should this thread be moved? I am running froyo 2.2 version from droid world.

View 3 Replies View Related

General :: Market Not Giving Updates

Sep 18, 2012

My aTrackDogSD tells me 14 apps have newer versions out but when It directs me to the appropriate market page for the app it just shows "open" "uninstall" NOT update. Where as it should prompt to update I have auto update enabled and the version in the market is newer than the version of my app. SO that meens I would have to uninstall each app then reinstall to acquire the newest version correct?

View 1 Replies View Related

Android :: Android Market Automatic Updates

Jun 11, 2009

When i update my application in the android market.Will users be automatically notified to download a new version?I just implemented veecheck for my game(http://www.tomgibara.com/ android/veecheck/) but that was all wasted time if it is already implemented.

View 3 Replies View Related

Android :: Android App Not In Market / How To Push Updates?

Aug 18, 2010

I have an android app written for my company and since its a private app, it is not in the android market. I'd like to be able to have the app check periodically for an update and if there is one notify the user and start downloading / installing the update.Is there an example of something like this out there?

View 2 Replies View Related

Android :: Unable To Install Application / Updates On Unrooted Desire

Sep 29, 2010

I seen to have a problem installing and updating pretty much all apps from the market. I am running anbranded and unrooted desire on 2.2. I have successfully downloaded nearly 50 apps from the market but recently it doesn't seem to install any apps including updates. I did find one that was ok (retro camera which I tried just to see) but it wont update sppedview, folder organizer lite or quick system info pro. It also doesn't seem to want to let me install quite a few other apps that I have tried (some alarm apps and some poker ones).

View 21 Replies View Related

Android :: Follow Up For Active Install Count - Application Updates

Oct 8, 2010

We wanted to follow-up. By now, you should have noticed that the installs metrics for your applications have been restored. We identified the problem as occurring with application updates only, have made some changes recently that should resolve and prevent this problem. Please let us know if this error persists.

If we can assist you further, please let us know. In my case, things have not changed at all. Downloads are increasing (1550) and active installs stabilized at 29% (the value before the drop was 44/45%). So, indeed active installs are increasing again - 29% is stable since three weeks - but the original percentage was not restored. Now, I don't know what to think... Maybe the problem is not solved, maybe in my specific case the active installs really dropped for a while (but it's curious that it only happened for a while...). BTW, I didn't release any new upgrade since then (I have a new one almost ready, but I'm beyond schedule because of personal problems) - and maybe the count would fix itself with new upgrades...

What would you do now? Is there anybody else for which the problem was not solved?

-- Fabrizio Giudici - Java Architect, Project Manager Tidalwave s.a.s. - "We make Java work. Everywhere." java.net/blog/fabriziogiudici - www.tidalwave.it/people Fabrizio.Giud...@tidalwave.it

View 6 Replies View Related

Motorola Droid :: Market For Available Updates Not Working?

Sep 24, 2010

I was trying to check the market for any available updates and noticed that its not working. It will only show one app in the start up screen and when I go to the download folder it says it is empty. I just used the market earlier today and it worked fine anyone else having this problem?

View 5 Replies View Related

General :: Forcing Market To Check For App Updates?

Feb 11, 2012

One thing I noticed with the market is it seems to periodically check for updates, but it doesn't seem to check that often. It seems like the Market application waits for a group of apps to get updated at once before it notifies you, or it seems to only check for updates on a certain day where app updates are rolled out onto the Android market (similar to PSN/XBL updates)

how to force the Market application to check for updates to my apps? I was thinking maybe going to the Market app in the system settings and clearing cache/data, but I was wondering if there's some other way to do it.

View 1 Replies View Related

HTC Desire :: Market Problems - App Not Downloading - Updates Not Working

Oct 27, 2010

Is there problems with the market again? I have just purchased an app and it is not downloading. Updates not working either. Just like the other day.

View 4 Replies View Related

Motorola Droid :: Getting Constant Forceclose Of Market Updates

May 7, 2010

I'm rooted and I have a lot of app updates, but I'm getting constant fcs from the app market to update. Is it a root issue or a google/android issue ? I got a droid by the way.

View 7 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved