I have been facing some problem with Old API versions. Some Links of some websites don't respond as they have preconditions that third party cookies must be enabled for webview. I did some search on topic and found an API :
CookieManager.getInstance().acceptThirdPartyCookies();
It fixes my issue and enables third party cookies but Min API level is 21. I need to support lower API level as low as 15. Is there any way we can perform same operation in lower API.
[Please note that API : CookieManager.getInstance().setAcceptCookie(true); is for enabling cookies and not third party cookies so it does not do the trick...:-(]