プロガードを使用して、アプリからカスタム ロギングを削除したいと考えています。私のコードは次のようになります。
public void foo() {
MyLogItem item = new MyLogItem();
// I want to remove all of these item.addText() calls:
item.addText("apple");
item.addText("pizza");
item.addText("noodles and "
+ " more noodles");
}
プロガードファイルでそれを指定するにはどうすればよいですか?
ありがとう