I\'ve created a web view app, the page that is displayed features market:// links but upon clicking them I get the 404 screen along with the error that the protocol is not s
Simplest solution
Intent newApp = new Intent(Intent.ACTION_VIEW, Uri.parse(URL)); startActivity(newApp);