I'm fairly new to Android development and I'm having trouble with external library dependencies at the moment. In particular I've imported a jar file that has upstream dependencies on another package which it can't locate. The package I imported is trying to import java.time.format.SimpleDateTimeTextProvider. I found a jar which apparently contains this package, but when I add it to my project the error still appears. When I try to import the same package into my own source code for the main activity, there are no errors, so it clearly is a standard part of Java and available somewhere on the machine I am working on.
Is there a way to force imported packages to look for packages they are dependant on by searching the rest of the machine? Alternatively, is there another common way of dealing with this? Lastly, does someone know (just in case there is something wrong with the package I've already tried) where I can find a jar file containing java.time.format.SimpleDateTimeTextProvider?
Thanks in advance.