I want to detect default browser of android inside my MVC controller. I have mobile detection right now:
public ActionResult Index()
{
if (WurflHelper.Instance.IsMobile(Request.UserAgent))
{
return View("MobileView");
}
else
{
return View();
}
}
How can i detect android default browser (not chrome). I need UserAgent parameters matches for this detection. Thanks for advice.
--------------EDIT--------------------------------------------------------------
i found this solution for client (javascript) : How to detect the stock Android browser. I need same solution for asp.net MVC