Rafael Winterhalter
Rafael Winterhalter
Do you have a reproducer?
Alright, does it work with a recent version of the dependency? This error should really not happen.
Did you create your agent as a fat jar? It seems like Byte Buddy is missing in it.
Yeah, that was a mix of an oversight and a backthought that agents need to shield Byte Buddy from a potential class-path version. I normally want to avoid these and...
Hi, examples are more then welcome. If you wanted to extend the tutorial to include a section on Android, this is very welcome!
You probably missed the dexmaker dependency.
It would be a good idea to have a generic renaming plugin in Byte Buddy, I'll reopen this issue as a reminder for this feature.
There is some progress in the `MemberSubstitution` component. I want to extend its capabilities but for now it is perfectly capable to replace a field or method access with another...
I'd use a matcher as: takesArguments(int.class, int.class).and(returns(int.class)) Descriptors can be resolved via ASMs Type class.
Either use `Type.getDescriptor` or use `MethodDescription.SignatureToken.getDescriptor`.