File tree Expand file tree Collapse file tree 2 files changed +2
-5
lines changed
src/main/java/me/teble/xposed/autodaily/hook/function/impl Expand file tree Collapse file tree 2 files changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ android {
21
21
// noinspection OldTargetApi
22
22
targetSdkVersion 31
23
23
versionCode mVersionCode
24
- versionName " 3.0.0 "
24
+ versionName " 3.0.1 "
25
25
26
26
testInstrumentationRunner " androidx.test.runner.AndroidJUnitRunner"
27
27
@@ -97,7 +97,7 @@ android {
97
97
signingConfig signingConfigs. release
98
98
}
99
99
matchingFallbacks = [' release' ]
100
- versionNameSuffix " -rc10 "
100
+ versionNameSuffix " -rc "
101
101
}
102
102
}
103
103
Original file line number Diff line number Diff line change @@ -5,7 +5,6 @@ import me.teble.xposed.autodaily.hook.function.BaseFunction
5
5
import me.teble.xposed.autodaily.hook.function.FunctionInitException
6
6
import me.teble.xposed.autodaily.hook.utils.QApplicationUtil
7
7
import me.teble.xposed.autodaily.task.model.Friend
8
- import me.teble.xposed.autodaily.utils.LogUtil
9
8
import me.teble.xposed.autodaily.utils.field
10
9
import me.teble.xposed.autodaily.utils.fieldValue
11
10
import me.teble.xposed.autodaily.utils.getMethods
@@ -87,12 +86,10 @@ open class FriendsManager : BaseFunction(
87
86
// 高版本qq判断方式
88
87
// Map<分组名, List<好友>>
89
88
private fun getFriendsMap (manager : Any ): ConcurrentHashMap <* , * > {
90
- LogUtil .log(manager.toString())
91
89
manager.getMethods().forEach {
92
90
if (Modifier .isPrivate(it.modifiers)
93
91
&& it.returnType == ConcurrentHashMap ::class .java
94
92
) {
95
- LogUtil .d(" ${it.parameterTypes} " )
96
93
it.isAccessible = true
97
94
return it.invoke(manager, true ) as ConcurrentHashMap <* , * >
98
95
}
You can’t perform that action at this time.
0 commit comments