afterburner icon indicating copy to clipboard operation
afterburner copied to clipboard

A library to help other librairies getting rid of boiler plate via byte code manipulation. Works on Android too.

Results 3 afterburner issues
Sort by recently updated
recently updated
newest added

Hey! Looking at the sample, I find it difficult to understand how to plug that into an existing build. As far as I understand, plugging into an "assemble" target is...

I want to append some mark When the developer calls some method, like `setOnClickListener`, but I get a exception:`javassist.NotFoundException: C:\Users\xyz\AppData\Local\Android\android-sdk\platforms\android-21\android.jar.` My code: ``` AfterBurner afterBurner = new AfterBurner(); ClassPool classPool...

I am trying desperately to setup a Proxy for Android classes such as TextView in my library. Specifically, I need to know when TextView#setText(int resId) is called in the client...