本帖最后由 bilabila 于 2022-5-21 17:03 编辑
测试代码:
callback = function()
-- print(2)
end
clickPoint = function(x, y)
local gesture = Gesture:new()
local path = Path:new()
path:setStartTime(0)
path:setDurTime(1)
path:addPoint(x, y)
gesture:addPath(path)
gesture:dispatch()
end
while true do
-- cmpColor(100,100,"787878-101010|123456",0.9)
clickPoint(500,500)
-- collectgarbage("collect")
-- print(collectgarbage("count"))
-- collectgarbage("collect")
--print(isAccessibilityServiceRun())
end
运行前内存占用:137MB
运行12分钟后内存占用:240MB
实际项目中,每小时内存增44MB,24小时增1G,2G内存手机挂不到10小时就闪退了。
|