If you need manual import .jar from local when building gradle project, you can add this in the build.gradle file.
Gradle Version : 6.8.1
dependencies {
...
...
...
implementation fileTree('your/local/libs/folder') { include '*.jar' }
...
...
...
}