javaandroid-studiokotlingradle

How do I fix this error: Task 'wrapper' not found in project ':app'


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

Photo of the errors


Solution

  • This is because your build.gradle file doesn't have a wrapper task. Add this code to build.gradle:

    task wrapper(type: Wrapper){
       gradleVersion = '7.2'
    }
    

    You can replace 7.2 with the gradle version you want, then run gradle wrapper task.