首页 > 其他 > 详细

解决Gradle minifyEnabled无法找到错误

时间:2014-11-04 21:09:22      阅读:778      评论: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://blog.csdn.net/mingchunhu/article/details/40791533

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!