This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
it seems to need com.squareup.okhttp.OkUrlFactory.java, and change the createConnection(URL url) like this: | |
@Override protected HttpURLConnection createConnection(URL url) throws IOException { | |
return new OkUrlFactory(client).open(url); | |
} | |
differences of new version or what? |