Error:Could not find property 'assembleDebug' on project ':app'

风流意气都作罢 提交于 2019-11-27 02:11:23

问题


I am using 'com.android.tools.build:gradle:2.2.0-alpha6' and Android Studio 2.2 Preview 6. The build runs perfectly fine on Gradle 2.1.0, but to enable instant run it asks me to update Gradle plugin.

On updating Gradle plugin, the build shows "Error:Could not find property 'assembleDebug' on project ':app'". I already tried cleaning .gradle and .idea and reloading the project, but nothing works.

Please help.


回答1:


  1. find which task is depending on assembleDebug task
  2. changing the following did the trick for me at least:

from:

task findbugs(type: FindBugs, dependsOn: assembleDebug)

to:

task findbugs(type: FindBugs, dependsOn: "assembleDebug")

so just surrounding the task with quotes was enough.




回答2:


It's from In that case, a workaround is this way:

//assembleDebug.doFirst {
//    println '=============assembleDebug============='
//}
//assembleRelease.doFirst {
//    println '=============assembleRelease============='
//}
//

// =======>

tasks.whenTaskAdded { task ->
    if (task.name == 'assembleDebug') {
        //task.dependsOn 'checkstyle', 'findbugs', 'pmd', 'lint'
        println '=============assembleDebug============='
    } else if (task.name == 'assembleRelease') {
        //task.dependsOn 'checkstyle', 'findbugs', 'pmd', 'lint'
        println '=============assembleRelease============='
    }
}



回答3:


If you have no any "assemble" in your project, so check an answer from this post:

Could not get unknown property 'assemble'



来源:https://stackoverflow.com/questions/38547400/errorcould-not-find-property-assembledebug-on-project-app

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!