I want to display a .pdf
file in WebView
which is having authentication. The app has been rejected by Google as I am using intent to load the WebView
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.parse("http://UserName:password@myUrl", "text/html");mContext.startActivity(intent);