peter Estifanos
peter Estifanos

Reputation: 151

Why I'm getting "Cannot query the value of property 'namespace' because configuration of project ':app' has not completed yet" after gradle upgrade?

enter image description hereI was trying to upgrade gradle from 6.5.1 to 7.3.3 but I am getting this error message

"Cannot query the value of property 'namespace' because configuration of project ':app' has not completed yet"

Upvotes: 2

Views: 4286

Answers (1)

Rohit Maurya
Rohit Maurya

Reputation: 750

You are getting this after upgrading gradle:

com.android.tools.build:gradle:6.5.1 --> 7.3.3

Solution: Updgrade your kotlin gradle plugin

org.jetbrains.kotlin:kotlin-gradle-plugin: --> latest version

Upvotes: 1

Related Questions