All my projects report this error? Is there a setting or option I need to change to resolve this error?
app: failed At 9/30/2021 2:47 PM with 1 error
Task 'wrapper' not found in project ':app'.
Task 'wrapper' not found in project ':app'
* Try:
Run gradle tasks to get a list of available tasks.
Run with --stacktrace option to get the stack
3
Answers
This is because your build.gradle file doesn’t have a wrapper task. Add this code to build.gradle:
You can replace 7.2 with the gradle version you want, then run
gradle wrapper
task.maybe your project’s structure is :
The correct way to open the project is :
Click build.gradle in the root directory ‘yourProjectDir’, not build.gradle in the ‘app’ dir.
Unlink unnecessary Gradle project and it will be fixed.