NullPointerException
NullPointerException

Reputation: 37731

Is it possible to avoid creation of proguard/dump.txt output file?

I have a problem with dump.txt file output from Proguard. I want Proguard not to generate that file.

I'm using Proguard in a huge Android project, with this configuration:

I use dontobfuscate because I want to see exception details in logcat.

I use ignorewarnings because I have a lot of warnings because this huge Android project has this project structure:

MyLibrary Project has a lot of jars and frameworks being referenced. So I get a lot of Proguard warnings on Launcher project, and because of this I added -ignorewarnings to Proguard configuration file.

Why do I have a 100MBytes dumb.txt file inside my Launcher project Proguard folder? How can I avoid this file generation?

Upvotes: 3

Views: 481

Answers (0)

Related Questions