File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed
app/src/main/java/com/android/skip Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 22
33- 新增「悬浮窗按钮」用于执行布局检查功能
44- 新增应用白名单搜索功能
5+ - 新增「严格模式」下可在应用内执行「跳过」
56- 修复加载的配置文件包含 Unicode 编码时未转换为中文的问题
67- 修复点击右上角「功能介绍」后菜单未自动关闭的问题
78- 修复断网后无法使用的问题
Original file line number Diff line number Diff line change @@ -102,7 +102,7 @@ class ConfigLoadRepository @Inject constructor() {
102102
103103 val targetNode = if (foundNode != null ) {
104104 if (skipText.length != null ) {
105- if (foundNode.text.length <= skipText.length) {
105+ if (foundNode.text != null && foundNode.text .length <= skipText.length) {
106106 foundNode
107107 } else {
108108 null
Original file line number Diff line number Diff line change @@ -92,7 +92,7 @@ class MyAccessibilityService : AccessibilityService() {
9292 appPackageName = rootNodePackageName
9393 }
9494
95- if (! whiteListRepository.isAppInWhiteList(rootNodePackageName) && scanTimes < 50 ) {
95+ if (! whiteListRepository.isAppInWhiteList(rootNodePackageName) && (isStrict || scanTimes < 50 ) ) {
9696 val that = this
9797 serviceScope.launch {
9898 val targetRect =
You can’t perform that action at this time.
0 commit comments