解决Gradle minifyEnabled无法找到错误

Android studio最新版0.9支持proguard minify,shrinkResources ,尝试了下,提示找不到minifyEnabled方法

Error:(29, 0) Gradle DSL method not found: 'minifyEnabled()'


google了几下,发现没人遇到,无意中看了下g+, 发现Android Studio团队发了条消息说需要Gradle plugin 0.14.0,么么哒,果断改配置

dependencies {
        classpath 'com.android.tools.build:gradle:0.14.+'
    }


搞定,不过根据官方介绍,这两个属性需要一起使用(shrinkResources ,minifyEnabled ),单独使用一个会出什么问题没验证,大家有兴趣可以试下

  • Support for automatic removal of unused resources
    • Off by default for now, enable by setting shrinkResources to true in your release build types. Requires minifyEnabled as well.

你可能感兴趣的:(android,gradle,Studio)