添加断点支持回调,修复没有断点时的bug,修复下载事件导致的内存泄漏的bug

This commit is contained in:
AriaLyy
2016-12-31 14:40:42 +08:00
parent 58afab572c
commit 0d3c157f38
17 changed files with 1111 additions and 496 deletions

View File

@@ -64,7 +64,7 @@ public class SingleTaskActivity extends BaseActivity<ActivitySingleBinding> {
private BroadcastReceiver mReceiver = new BroadcastReceiver() {
@Override public void onReceive(Context context, Intent intent) {
String action = intent.getAction();
if (action.equals(DownloadManager.ACTION_START)) {
if (action.equals(Aria.ACTION_START)) {
L.d("START");
}
}