If someone got this error for the old android project, go and download the fetch2 and fetch2 core aar files from the release page.
com.github.florent37:shapeofview:1.4.7
Add both aar files to libs.
YourProject/
├── app/
│ ├── libs/
│ │ └── your-library.aar
After that add the aar to the build.gradle(app)
implementation files('libs/fetch2-3.2.2.aar')
implementation files('libs/fetch2core-3.2.2.aar')
After Sync Now the error may gone. 🍻
Thanks to https://github.com/helloimfrog.