After installing the RC2 upgrade (in my case i’ve upgraded directly from 0.8.something to 1.0 rc2) the following error could appear when reimporting/resyncing projects created with previous versions:
Gradle DSL method not found: ‘runProguard()’
The solution is quite simple: replace “runProguard” with “minifyEnabled” in your build.gradle files. runProguard was renamed to minifyEnabled in version 0.14.0. For more info, see http://tools.android.com/tech-docs/new-build-system
Leave a Reply