例如,followng错误消息显示在GameController.java中从行号435抛出NullPointerException:
java.lang.NullPointerException
at com.fuu.mahjong.game.GameController.boolean showHint(boolean)(GameController.java:435)
at com.fuu.mahjong.game.GameViewActivity.boolean onTouch(android.view.View,android.view.MotionEvent)(GameViewAct
ivity.java:1552)
at android.view.View.dispatchTouchEvent(View.java:7122)
at android.view.ViewGroup.dispatchTransformedTouchEvent(ViewGroup.java:2176)
...
GameController.java中的第435行是
clearCurrentSelections();
clearCurrentSelections()是GameController中的私有方法,错误消息不显示clearCurrentSelections()内的跟踪信息,如果我将clearCurrentSelections()更改为public,则错误消息显示clearCurrentSelections()中的哪一行导致NullPointerException
使用ProGuard后,有没有办法在私有方法中显示跟踪信息?
答案 0 :(得分:3)
ProGuard的优化步骤可能已经概述了该方法。然后,虚拟机在堆栈跟踪中生成更少的行。如果要避免这种情况,可以禁用方法内联:
-optimizations !method/inlining/*
在Dalvik虚拟机上,方法内联可以改善性能。
该方法是否为私有方法对于优化无关紧要,除非您的配置明确保留公共方法。