码迷,mamicode.com
首页 > 其他好文 > 详细

解决Gradle minifyEnabled无法找到错误

时间:2014-12-25 19:56:46      阅读:244      评论:0      收藏:0      [点我收藏+]

标签:

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.

解决Gradle minifyEnabled无法找到错误

标签:

原文地址:http://www.cnblogs.com/mengfanrong/p/4185184.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!