Home > database >  "unable to resolve class GradleException" Error
"unable to resolve class GradleException" Error

Time:09-28

I am creating my project and when trying to run it it shows me this error, I have not programmed anything I just wanted to run the default app

bug image

CodePudding user response:

The complete error message reads

Unexpected token. u @ line 12, column 2

And if you look in line 12, right below the text "unable to resolve class GradleException", then you see a closing bracket and an extra "u".

Apparently this is an accidental typo. Remote that u and try again

  • Related