* refactor: move library dynamic layout inflater to autojs module

* fix: ScriptExecuteActivity memory leak
* fix: InterruptedException on script exit event
This commit is contained in:
hyb1996
2018-01-04 16:22:38 +08:00
parent 7145faa533
commit 2d287f720c
38 changed files with 2677 additions and 59 deletions

View File

@@ -3,6 +3,6 @@ console.show();
events.observeTouch();
events.setTouchEventTimeout(30);
events.on("touch", function(point){
var c = colors.toString(images.pixel(captureScreen(), point.x, point.y);
var c = colors.toString(images.pixel(captureScreen(), point.x, point.y));
log("(" + point.x + ", " + point.y + "): " + c);
});