Skip to main content

Android will remain the No. 2 mobile operating system in the world

Gartner (NYSE: IT) has predicted that Android will remain the No. 2 mobile operating system in the world behind not Apple, but Nokia's (NYSE: NOK) Symbian OS.


Android will capture 29.6 percent of the market, compared to 30.2 for Symbian and 14.9 percent for iOS, Gartner predicted.

http://www.gartner.com/it/page.jsp?id=1434613

Comments

Popular posts from this blog

Save All/Format All Documents in Visual Studio

Sub FormatAll()    For Each proj As Project In DTE.Solution.Projects      FormatFileRecur(proj.ProjectItems())    Next End Sub Sub FormatFileRecur(ByVal projectItems As EnvDTE.ProjectItems)    For Each pi As EnvDTE.ProjectItem In projectItems      If pi.Collection Is projectItems Then        Dim pi2 As EnvDTE.ProjectItems = pi.ProjectItems        Try          If pi.Name.EndsWith(".cs") Then            If Not (pi.Name.EndsWith("Designer.cs")) Then               If Not pi.IsOpen Then pi.Open(Constants.vsViewKindCode)             pi.Document.Activate()             DTE.ExecuteCommand("Edit.FormatDocum...