I using CookieManger with okHttp and i don't know why its saying:
Cannot resolve setCookieMethod. I googled its a valid method and the CookieManger and OkHttp is Imported in the project.
OkHttpClient client = new OkHttpClient();
CookieManager cookieManager = new CookieManager();
cookieManager.setCookiePolicy(CookiePolicy.ACCEPT_ALL);
client.setCookieHandler(cookieManager);