Where do I find proguard.cfg in my project?

假如想象 提交于 2019-11-30 04:23:31

问题


I want to enable the ProGuard for my application and in this documentation ProGuard it says that the proguard.cfg, where I have to modify something, is automatically generated. But if I look in my project folder I only see a proguard-project.txt file but I dont see the proguard.cfg which I need.

How can I get this proguard.cfg? Or was I'm doing wrong?

Please guid me to this file.


回答1:


The documentation is slightly inaccurate. The generated file is proguard-project.txt and will be in the root directory of your project.

To enable Proguard, you will need to ignore the "do not modify" warning in project.properties and uncomment the following line:

     proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt

The Android tool chain will sometimes make changes to project.properties, but your Proguard path will be preserved.




回答2:


From this you can get your right way:

Proguard.cfg Missing

i am searching for default.properties file for missing proguard.cfg

proguard.cfg file missing

android studio - proguard.cfg file is missing



来源:https://stackoverflow.com/questions/20514881/where-do-i-find-proguard-cfg-in-my-project

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!