I figured out a way to clear everything. I hope someone finds this useful!
public void clearCookies(){
CookieSyncManager.createInstance(GooglePlusActivity.this);
CookieManager cookieManager = CookieManager.getInstance();
cookieManager.removeAllCookie();
}
source
share