简体   繁体   中英

Could not get unknown property 'assembleRelease' for project

After updating Android Studio to version 2.2 and the gradle plugin to 2.2.0, I get following error:

Error:(32, 1) A problem occurred evaluating project ':jobdispatcher'. Could not get unknown property 'assembleRelease' for project ':jobdispatcher' of type org.gradle.api.Project.

The problem is in the build.gradle file of an imported jobdispatcher module:

task aar(dependsOn: assembleRelease)

What changes can I make to fix this?

Note, this issue is very similar to, but still a bit different to, that reported here .

Move your dependency dependsOn inside your gradle task like shown below:

task aar() << {
    dependsOn 'assembleRelease'
}

Just add "" like this to fix your problem:

from:

task aar(dependsOn: assembleRelease)

to:

task aar(dependsOn: "assembleRelease")

I tried all the previous answers, all are not working. Here is the one working after gradle 2.2. Starting from 2.2, those tasks also include "assembleDebug" and "assembleRelease". To access such tasks, the user will need to use an afterEvaluate closure:

afterEvaluate {
    task aar(dependsOn: assembleRelease) {
          //task
    }
}
task aar {
    ....
}

aar.dependsOn('assembleRelease')

and task aar will run after task "assembleRelease" finished~

wish this will help you~ :-D

I had the same problem.

Disabling instant run under Android Studio/Preferences/Build, Execution, Deployment/Instant Run worked for me.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM