3.0.0-RC1 This chunk of code is throwing exception. So i found it out when migrating to okhttp3. ``` java client.interceptors().add(new Interceptor() { @Override public okhttp3.Response intercept(Chain chain) throws IOException { Request request = chain.request(); Request.Builder requestBuilder = request.newBuilder() .addHeader("Authorization", authPrefs.getString(Properties.ApiProperties.TOKEN, "null")) .method(request.method(), request.body()); request = requestBuilder.build(); return chain.proceed(request); } }); ``` Version 2.7.0 works fine for me.