Skip to content
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

Closed
buffcow opened this issue Apr 30, 2023 · 10 comments
Closed

添加在 Hook 资源时获取宿主原始资源的扩展功能 #36

buffcow opened this issue Apr 30, 2023 · 10 comments
Labels
enhancement New feature or request

Comments

@buffcow
Copy link
Contributor

buffcow commented Apr 30, 2023

框架中貌似没有封装获取app资源的方法
例如我要获取app的string,要经过以下步骤:

val id = appResources!!.getIdentifier(
                    "example_name",
                    "string",
                    packageName
                )
appResources.getString(id)

这样略显麻烦,有什么优雅的方法可以代替吗

@fankes
Copy link
Member

fankes commented Apr 30, 2023

你可以在宿主的资源或上下文扩展方法中调用 injectModuleAppResources 把模块的资源注入宿主,然后用宿主的资源直接获取。
这个方法不是必须的扩展,不会被添加。
参考文档→这里

@buffcow
Copy link
Contributor Author

buffcow commented Apr 30, 2023

你可以在宿主的资源或上下文扩展方法中调用 injectModuleAppResources 把模块的资源注入宿主,然后用宿主的资源直接获取。 这个方法不是必须的扩展,不会被添加。 参考文档→这里

我不是想获取模块的资源,而是获取被hook的宿主的res资源噢

@buffcow
Copy link
Contributor Author

buffcow commented Apr 30, 2023

就比方说,我有个这样的需求:
hook app 的 res,将 string 为 example_name 的值加上ab

目前的代码是这样的:

            injectResource {
                conditions {
                    name = "example_name"
                    string()
                }
                // 获取原有的值
                val id = appResources!!.getIdentifier(
                    "example_name",
                    "string",
                    packageName
                )
                // 加上 ab
                replaceTo(appResources!!.getString(id) + "ab")
            }

@fankes
Copy link
Member

fankes commented Apr 30, 2023

这样啊,后面可以加一个扩展

@fankes fankes added the enhancement New feature or request label Apr 30, 2023
@fankes fankes changed the title 关于获取 app res 的问题 [WIP] 添加在 Hook 资源时获取宿主原始资源的扩展功能 Apr 30, 2023
@buffcow
Copy link
Contributor Author

buffcow commented Apr 30, 2023

ok, 也可以考虑一下不在hook 资源的情况下,也可以快捷的 根据资源名称获取 app 资源的值😀

@fankes
Copy link
Member

fankes commented Apr 30, 2023

ok, 也可以考虑一下不在hook 资源的情况下,也可以快捷的 根据资源名称获取 app 资源的值😀

这属于额外扩展了,可以加上

@buffcow
Copy link
Contributor Author

buffcow commented Apr 30, 2023

ok, 也可以考虑一下不在hook 资源的情况下,也可以快捷的 根据资源名称获取 app 资源的值😀

这属于额外扩展了,可以加上

好的 辛苦了👍

@fankes
Copy link
Member

fankes commented Oct 1, 2023

injectResource {
    conditions {
        name = "example_name"
        string()
    }
    // 加上 ab
    replaceTo { "${it}ab" }
}

根据你的需求,这个方法增加的扩展为在回调中可以拿到 it 并在最后一位返回需要修改的内容。

@buffcow
Copy link
Contributor Author

buffcow commented Oct 6, 2023

nice

@buffcow buffcow closed this as completed Oct 6, 2023
@fankes fankes reopened this Oct 6, 2023
@fankes
Copy link
Member

fankes commented Oct 7, 2023

1.2.0 版本已发布,该功能已添加。

@fankes fankes closed this as completed Oct 7, 2023
@fankes fankes changed the title [WIP] 添加在 Hook 资源时获取宿主原始资源的扩展功能 添加在 Hook 资源时获取宿主原始资源的扩展功能 Oct 7, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

2 participants