Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Check Update Available App Store

Anyone known if exist some way to check if exist one update available on App Store??

I want notify to user the new updates on my application begins...

Thanks

like image 574
Jovem Avatar asked Jun 13 '11 10:06

Jovem


People also ask

How do I see which apps need updating?

For that, open Google Play Store on your phone. Then, tap on the three-bar icon at the top-left side. Select My apps & games from it. You will see the available app updates listed under the Updates section.

How do I know if I have app updates?

Open the App Store. Tap your profile icon at the top of the screen. Scroll to see pending updates and release notes. Tap Update next to an app to only update that app, or tap Update All.

Why can't I update my apps on my iPhone?

If your iPhone apps won't update, make sure that you're connected to Wi-Fi and logged into your Apple ID. You can also turn automatic app updates off through the Settings app.


2 Answers

You can easily ask the App Store to return your application info:

e.g. https://itunes.apple.com/lookup?id=441252681

In the json response, the "info" field is what you're looking for, and you get it updated for free!

See the official documentation here.

like image 127
nebillo Avatar answered Sep 21 '22 13:09

nebillo


Just use ATAppUpdater, it is 1 line, thread-safe and fast. It also have delegate methods if you would like to track user action. Here is an example:

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    [[ATAppUpdater sharedUpdater] showUpdateWithConfirmation]; // 1 line of code
    /////////////////////// OR ///////////////////////
    [[ATAppUpdater sharedUpdater] showUpdateWithForce]; // 1 line of code

   return YES;
}

Delegate methods:

- (void)appUpdaterDidShowUpdateDialog;
- (void)appUpdaterUserDidLaunchAppStore;
- (void)appUpdaterUserDidCancel;
like image 39
emotality Avatar answered Sep 18 '22 13:09

emotality