im trying to set Cookie for picasso connections . i found this for OkHttp:
OkHttpClient client = new OkHttpClient();
CookieManager cookieManager = new Cooki
You'll want to use OkHttpDownloader to tie the two together:
OkHttpClient client = new OkHttpClient();
CookieManager cookieManager = new CookieManager();
cookieManager.setCookiePolicy(CookiePolicy.ACCEPT_ALL);
client.setCookieHandler(cookieManager);
// Create the downloader for Picasso to use
OkHttpDownloader downloader = new OkHttpDownloader(client);
Picasso picasso = new Picasso.Builder(context).downloader(downloader).build();