I am working on a legacy android project and trying to import the dependency
com.vanniktech:android-image-cropper:4.3.3
The dependency is loaded without errors or warnings however when importing e.g.
import com.canhub.cropper.CropImage;
I am getting Cannot resolve symbol CropImage
. When looking at the package, you can see that a lot of classes are missing:
Any idea what the reason might be? I have the same issue regardless of the package version I import. My project is configured with gradle 7 and kotlin 1.7.20. The app itself is written in Java.
2