优化 脚本管理器增删文件后的更新
新增 支持插件 优化 多点找色的内存泄漏 修复 文件重命名时的后缀问题 修复 脚本抛出Throwable不能被捕捉的问题
This commit is contained in:
@@ -32,7 +32,7 @@ public class ScriptExecutionGlobalListener implements ScriptExecutionListener {
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onException(ScriptExecution execution, Exception e) {
|
||||
public void onException(ScriptExecution execution, Throwable e) {
|
||||
onFinish(execution);
|
||||
}
|
||||
|
||||
|
||||
@@ -90,7 +90,7 @@ public class AssetsProjectLauncher {
|
||||
}
|
||||
PFiles.deleteRecursively(new File(mProjectDir));
|
||||
try {
|
||||
PFiles.copyAssetDir(mActivity, mAssetsProjectDir, mProjectDir, null);
|
||||
PFiles.copyAssetDir(mActivity.getAssets(), mAssetsProjectDir, mProjectDir, null);
|
||||
} catch (IOException e) {
|
||||
throw new UncheckedIOException(e);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user