标签: android retrofit
@Streaming改造无法在发行版中正确下载文件(启用了proguard)。没有@Streaming,它在发行版本中可以完美地工作。通过@Streaming,它可以在没有proguard的开发版本中使用
public interface RetrofitInterface { @Streaming @GET Call<ResponseBody> downloadFileByUrl(@Url String fileUrl); }