I have included a jar in my android project,
build.gradle
as
implementation files('libs/dependency_a.jar');
But there are dependencies with are needed by this jar file, which can be downloaded from the internet but don't get downloaded while building.
How do i get Gradle to download those dependencies automatically.
Thanks.