解决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.

posted @ 2014-12-25 17:39  mengfanrong  阅读(2831)  评论(0编辑  收藏  举报