We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7bef72d commit d68569fCopy full SHA for d68569f
assists/src/main/java/com/ven/assist/ui/UIOperate.kt
@@ -101,7 +101,7 @@ object UIOperate {
101
*/
102
private fun getNodes(parentNode: AccessibilityNodeInfo, nodeList: ArrayList<AccessibilityNodeInfo>) {
103
nodeList.add(parentNode)
104
- if (nodeList.size > 500) return
+ if (nodeList.size > 10000) return
105
for (index in 0 until parentNode.childCount) {
106
parentNode.getChild(index)?.let {
107
getNodes(it, nodeList)
0 commit comments