How To Disable Method Inlining In Proguard?
My app is crashing with this error on Android 4.4 only Fatal Exception: nTa: java.lang.IllegalAccessError: tried to access class dUa$a[] from class patient.healofy.vivoiz.com.healo
Solution 1:
In order to disable method inlining completely you can add this to your configuration
-optimizations !method/inlining/*
Post a Comment for "How To Disable Method Inlining In Proguard?"