0

i've tried all the solution with HtmlAgilityPack

            newVersion = doc.DocumentNode.SelectNodes("//div[@itemprop='softwareVersion']")
                              .Select(p => p.InnerText)
                              .ToList()
                              .First()
                              .Trim();

also i've tried this dcsoup

 var doc = client.GetAsync("https://play.google.com/store/apps/details?id=" + AppInfo.PackageName + "&hl=en_CA").Result.Parse();
                    var versionElement = doc.Select("div:containsOwn(Current Version)");

all the method return empty string i noticed there is a changes of page play store and does not show the version number

DevQc
  • 113
  • 8

0 Answers0