I am upgrading gradle from 6.2 to 7.3.3 but I am getting the error on
Cannot query the value of property 'namespace' because configuration of project ':app' has not completed yet.
This error comes when I comment the below code
// javaCompileOptions {
// annotationProcessorOptions {
// includeCompileClasspath true
// }
// }
If I uncomment the code I get below error
No signature of method: build_e2h4qa61bft5s0ue8tk1wwyzn.android() is applicable for argument types: (build_e2h4qa61bft5s0ue8tk1wwyzn$_run_closure5) values: [build_e2h4qa61bft5s0ue8tk1wwyzn$_run_closure5@2c96e5dc]
this method might be removed from gradle 7.3.3 but I could not find the solution for the first error. I tried with --stacktrace, --debug --info but not getting enough info to solve this.