Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public class DownloadUtil {
public static void downloadHostFile(final Context context, final DownloadListener downloadListener) {
AsyncHttpClient mClient = new AsyncHttpClient();
//TODO umeng配置下载链接
String url = "https://coding.net/u/scaffrey/p/hosts/git/raw/master/hosts";
String url = "https://coding.net/u/scaffrey/p/hosts/git/raw/master/hosts-files/hosts";
mClient.get(context, url, new AsyncHttpResponseHandler() {
@Override
public void onSuccess(int statusCode, final Header[] headers, final byte[] bytes) {
Expand Down