[Solved] How to make app update available to users in the form of an attractive screen? [closed]

You can get all App info from iTunes store lookup API: http://itunes.apple.com/lookup?bundleId=YOUR_BUNDLE_ID, in this you can get App version on App Store. Make your design screen as you want to show your App users, Then compare your App version on App store & user’s device, if both version not equal then show the update version … Read more

[Solved] Latest available Android OS version for different devices [closed]

I Think There is no such specific site for getting such information but i usually get such information through blogs and different people who gives latest and greatest information. For example https://www.androidpit.com/android-5-0-lollipop-phone-update-news or like Motorola has this site for update check https://motorola-global-portal.custhelp.com/app/standalone/country-selector/software-upgrade i think this type of site may be with different vendors so you … Read more

[Solved] Searching for the newest update in a directory c#

You can use LINQ: int updateInt = 0; var mostRecendUpdate = Directory.EnumerateDirectories(updateDir) .Select(path => new { fullPath = path, directoryName = System.IO.Path.GetFileName(path) // returns f.e. Update15 }) .Where(x => x.directoryName.StartsWith(“Update”)) // precheck .Select(x => new { x.fullPath, x.directoryName, updStr = x.directoryName.Substring(“Update”.Length) // returns f.e. “15” }) .Where(x => int.TryParse(x.updStr, out updateInt)) // int-check and initialization … Read more