我想使用 proguard 从我的应用程序中删除一些自定义日志记录。我的代码如下所示:
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");
}
我怎么能在我的 proguard 文件中指定呢?
谢谢