Android Proguard does not inline
问题 I am using the latest Android SDK (4.1) and I tried exporting a signed jar with Proguard enabled. However, after decompiling the optimized APK, I noticed that methods that I would have expected to be inlined were not. I know that Proguard ran because the code was correctly obfuscated. So to confirm this, I added this method to my Activity: private void testInlining() { mConfig = null; } This private method is called only once in my activity, and because it is private, it should be very