Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

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.

like image 477
whitepearl Avatar asked Sep 06 '25 17:09

whitepearl


1 Answers

  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.

like image 54
Shehabic Avatar answered Sep 09 '25 05:09

Shehabic



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!