fix memory leak

This commit is contained in:
hyb1996
2017-02-15 21:58:31 +08:00
parent e2d5efa710
commit 1463011b7b
47 changed files with 193 additions and 102 deletions

View File

@@ -13,6 +13,7 @@ import com.stardust.scriptdroid.file.FileUtils;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.Serializable;
import timber.log.Timber;
@@ -30,7 +31,7 @@ public class Droid {
public static final String UI = "\"ui\";";
public interface OnRunFinishedListener {
public interface OnRunFinishedListener extends Serializable {
void onRunFinished(Object result, Exception e);
}