Could any one give me the exact .pro file of Proguard to shrink Netty (version 4 or 5)?
I have a jar file that uses Netty, I am using Proguard 4.11 to obfuscate and shrink my jar file with Netty into one small jar file. I am not using all of Netty classes, my jar is about 600kb in size and Netty is nearly 2mb and I want to keep the obfuscated jar file less than 1mb.
The problem is that when I execute the obfuscated jar file I get many exceptions related to Netty. I tried to fix it by keeping some Netty classes and members in Proguard but I keep getting other exceptions of missing classes and methods.(I think Netty uses a lot of retrospection).
So how to shrink it with proguard?