I have an issue with third party libraries that are imported to my project.
I read quite a lot of articles about that but do not get any information how properly han
This is caused by a gradle dependency on some out-of-date thing which causes the error. Remove gradle dependencies until the error stops appearing. For me, it was:
implementation 'org.apache.directory.studio:org.apache.commons.io:2.4'
This line needed to be updated to a newer version such as:
api group: 'commons-io', name: 'commons-io', version: '2.6'