I have to build an app to hooking using Xposed some value from a static object but no success. This is the method I want to hook to the return value. in same to be return 10 or another value.
public static int somemethod () {
return 0
}
What code can I use to hook this return value?
Update Question:
I want to change value of return to another value using xposed framework. In my example give value 0. And i want to change that value to 20 or 10 using xposed method. Anyway i want to know xposed methode to do that.