Add the below to your manifest:
in my case, i was sure that the action is correct, but i was passing wrong URL, i passed the website link without the http:// in it’s beginning, so it caused the same issue, here is my manifest (part of it)
when i code the following, the same Exception is thrown at run time :
Intent intent = new Intent();
intent.setAction(“com.dsociety.activities.MyBrowser”);
intent.setData(Uri.parse(“www.google.com”)); // should be http://www.google.com
startActivity(intent);