-
Notifications
You must be signed in to change notification settings - Fork 121
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
添加在 Hook 资源时获取宿主原始资源的扩展功能 #36
Comments
你可以在宿主的资源或上下文扩展方法中调用 |
我不是想获取模块的资源,而是获取被hook的宿主的res资源噢 |
就比方说,我有个这样的需求: 目前的代码是这样的: injectResource {
conditions {
name = "example_name"
string()
}
// 获取原有的值
val id = appResources!!.getIdentifier(
"example_name",
"string",
packageName
)
// 加上 ab
replaceTo(appResources!!.getString(id) + "ab")
} |
这样啊,后面可以加一个扩展 |
ok, 也可以考虑一下不在hook 资源的情况下,也可以快捷的 根据资源名称获取 app 资源的值😀 |
这属于额外扩展了,可以加上 |
好的 辛苦了👍 |
injectResource {
conditions {
name = "example_name"
string()
}
// 加上 ab
replaceTo { "${it}ab" }
} 根据你的需求,这个方法增加的扩展为在回调中可以拿到 |
nice |
|
框架中貌似没有封装获取app资源的方法
例如我要获取app的string,要经过以下步骤:
这样略显麻烦,有什么优雅的方法可以代替吗
The text was updated successfully, but these errors were encountered: