Rafael Winterhalter
Rafael Winterhalter
Woop, thanks for that. Unfortunately, I reworked the Gradle plugin and build a bit just the last days. I hope that it's an easy adjustment. Could you also squash the...
You already inspired a bit of refactoring. The class loader scanning is now done from the core lib.
Continuing the work on this branch: https://github.com/raphw/byte-buddy/compare/android-plugin
You can use caching in advice, too. The origin annotation has a `cached` property that you can set. As advice is often used for retransformation, and since retransformation does not...
You are right, I must have planned but never implemented this. You could however simply create your own offset mapping and use `MethodConstant.of(instrumentedType).cached()` as the resolved value. You can do...
A servlet gets the response as a second argument. Did you try that after the super call? You can inject it as another annotated parameter.
Did you import the right annotation? It must not be from the advice package. If none of the code is called there must be an error during interception which should...
What do you mean by "does not work" here, though? Looks right to me.
Did you register an `AgentBuilder.Listener`? It should print out any class that is instrumented or ignored.
It seems as if the transformation attempts to remove a method of a class that was already loaded. This should not happen unless the agent is explicitly set up to...