In My Application opening Gmail via Intent. I have added Hyperlink Intent Extra text it's not working Android OS 5 and above but it's working fine OS 4.3
Please suggest me what is the problem. Please refer the code below.
Note: Direct link [https://www.google.co.in/] working fine all Android OS.
Code:
Intent sharingIntent = new Intent(Intent.ACTION_SEND);
sharingIntent.setType("text/html");
sharingIntent.putExtra(Intent.EXTRA_TEXT, Html.fromHtml("<a href=https://www.google.co.in/>Google</a>");
startActivity(Intent.createChooser(sharingIntent,"Share using"));
try below code