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

解决Gradle minifyEnabled无法找到错误

时间:2014-11-04 21:11:45      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:android studio   gradle   

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无法找到错误

标签:android studio   gradle   

原文地址:http://blog.csdn.net/mingchunhu/article/details/40791533

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