xamarin.ios - Get last update date for iOS application -


i'd display user when app last updated. on android say:

packageinfo p = a.packagemanager.getpackageinfo(a.applicationinfo.packagename, packageinfoflags.metadata); textview lastupdated = messageview.findviewbyid<textview>(resource.id.lastupdated); datetime dt = new datetime(1970, 1, 1, 0, 0, 0, 0, system.datetimekind.utc); lastupdated.text = "app updated on " + dt.addmilliseconds(p.lastupdatetime).tolocaltime().tostring("mm-dd-yyyy"); 

how can similar ios?

from below itune app search api can app details.
http://itunes.apple.com/lookup?bundleid=yourbundleid&country=appcountry

simple download file url @ runtime , read data json string, in obtained result can current version release date key currentversionreleasedate


Comments

Popular posts from this blog

mysql - Dreamhost PyCharm Django Python 3 Launching a Site -

java - Sending SMS with SMSLib and Web Services -

java - How to resolve The method toString() in the type Object is not applicable for the arguments (InputStream) -