Error:(26, 0) Gradle DSL method not found: ‘runProguard()’

Instead of using runProguard in your gradle file, try using minifyEnabled. This should fix the issue. runProguard is deprecated and soon be stop working.

EDIT

To use minifyEnabled, gradle should be updated to version 2.2 or above.

Leave a Comment