We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
1、获取某个类下面的所有方法 2、能否添加对成员变量或者局部变量的重命名功能,以便实现自动反混淆,例如下面的代码:
public static void a(Context p0,String p1,String p2,String p3,String p4){ Editor uEditor = p0.getSharedPreferences("config", 0).edit(); uEditor.putString("ip", p1); uEditor.putString("username", p2); uEditor.putString("password", p3); uEditor.putString("ischeck", p4); uEditor.commit(); }
对一些类似putString这样的函数,前面的字符串就是后面的变量的含义,因此可以直接用前面的字符串对后面的变量进行重命名
The text was updated successfully, but these errors were encountered:
感谢,很好的建议
Sorry, something went wrong.
No branches or pull requests
1、获取某个类下面的所有方法
2、能否添加对成员变量或者局部变量的重命名功能,以便实现自动反混淆,例如下面的代码:
对一些类似putString这样的函数,前面的字符串就是后面的变量的含义,因此可以直接用前面的字符串对后面的变量进行重命名
The text was updated successfully, but these errors were encountered: