Using gradle wrapper 2.10, and Android Gradle build tools 2.0.0-beta7 2.1.0
From my build.gradle:
buildTypes {
all{
minifyEnabled true
proguardFiles = [getDefaultProguardFile("proguard-android.txt"), 'proguard-project.pro'];
}
}
This works. Things are obfuscated.
I have the following line in my proguard-project.pro as well:
-printmapping my-mapping.txt
Everything else in that file works fine, but the mapping keeps getting printed to the wrong place:
Printing mapping to [C:\path\to\my\project\build\outputs\mapping\debug\mapping.txt]
Has this syntax changed?
Note: I've tried supplying a direct path. I've tried supplying a name without a hyphen. Nothing changes.
For now I just made a gradle copy task for it.