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
For the visually inclined, the version of Proguard can also be checked by double clicking on proguardgui.jar in ...\android-sdk\tools\proguard\lib
The ProGuard jar is located inside the Android SDK: android-sdk/tools/proguard/lib/proguard.jar
You can print out its version number with
java -jar android-sdk/tools/proguard/lib/proguard.jar
(with the proper path). If necessary, you can replace the jar (actually, the entire proguard subdirectory) with the latest version from the download page at the official ProGuard site.
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'
}
}
}