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 n
Solution 1:
Move your dependency dependsOn
inside your gradle task like shown below:
task aar() << {
dependsOn 'assembleRelease'
}
Solution 2:
Just add "" like this to fix your problem:
from:
task aar(dependsOn: assembleRelease)
to:
task aar(dependsOn: "assembleRelease")
Solution 3:
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
}
}
Solution 4:
task aar {
....
}
aar.dependsOn('assembleRelease')
and task aar will run after task "assembleRelease" finished~
wish this will help you~ :-D
Solution 5:
I had the same problem.
Disabling instant run under Android Studio/Preferences/Build, Execution, Deployment/Instant Run
worked for me.
Post a Comment for "Could Not Get Unknown Property 'assemblerelease' For Project"