frida-java-bridge
frida-java-bridge copied to clipboard
inheritence similar function problem
In my case scenario there is class A which extends abstract class B,
now class B has a method :
public void A00()
{
}
and class A has method :
public static String A00(.. , ..)
{
}
now when i create an instance of class A and try to call A00 the static function declared in class A gets called, how do i call the base A00 function?
this.$super
gives the super class object, thought the name is same(is this a bug?)