How can I check/upgrade Proguard version whn using it in Eclipse for Android development?

后端 未结 3 624
余生分开走
余生分开走 2020-12-13 13:56

The documentation on this is extremely poor. I understand that ProGuard can be enabled by manually editing \"default.properties\" in the project\'s rot directory. And all th

3条回答
  •  我在风中等你
    2020-12-13 14:13

    Quoting my own answer from over here, you can override the ProGuard version like so:

    buildscript {
        configurations.all {
            resolutionStrategy {
                force 'net.sf.proguard:proguard-gradle:5.3.2'
            }
        }
    }
    

提交回复
热议问题