File tree 3 files changed +24
-1
lines changed
3 files changed +24
-1
lines changed Original file line number Diff line number Diff line change 72
72
73
73
** AccessibilityService**
74
74
75
+ [ AccessibilityService基础简介] ( accessibilityService.md )
76
+
77
+ [ AccessibilityService实战 - WeChatLuckyMoney] ( https://github.com/geeeeeeeeek/WeChatLuckyMoney )
78
+
79
+ [ AccessibilityService实战 - DingDingHelper] ( https://github.com/Justson/DingDingHelper )
80
+
81
+ [ AccessibilityService实战 - luckymoney] ( https://github.com/chenjishi/luckymoney )
82
+
75
83
** 记录一些神奇的地址**
76
84
77
85
[ 破解工具包] ( https://down.52pojie.cn/Tools/Android_Tools/ )
Original file line number Diff line number Diff line change
1
+ ** [ AccessibilityService是什么?] ( https://developer.android.google.cn/reference/kotlin/android/accessibilityservice/package-summary?hl=en ) **
2
+
3
+ ** Accessibility services should only be used to assist users with disabilities in using Android devices and apps.**
4
+
5
+ ** AccessibilityService出现的本意是作为辅助功能帮助残障人士更好更方便的使用我们的Android,可惜它被带跑偏了~~ **
6
+
7
+ ** AccessibilityService外部的工作原理是通过自带API接收外部给定的目标(文本,资源id...)来查询目标控件,并模拟(触摸,点击,长按...)操作来触发事件**
8
+
9
+ ** AccessibilityService可以做什么了?做外挂!比如微信红包外挂,游戏操作外挂(神一样的反应速度,让你无懈可击~~~)**
10
+
11
+ ** 想要AccessibilityService应用工作正常情况下需要用户同意你的操作请求,所以是个显示的操作,不过如果能与Xposed结合,或许就可以静悄悄的干活了~~ **
12
+
13
+
14
+
15
+
Original file line number Diff line number Diff line change 17
17
** 语法**
18
18
19
19
| smali | meaning |
20
- | : ------: | : ------: |
20
+ | ------| ------|
21
21
| .field | 定义变量 |
22
22
| .method | 方法 |
23
23
| .parameter | 方法参数 |
You can’t perform that action at this time.
0 commit comments