I am new to Android Studio. What I need to do is add a few jar files in the External Libraries below the < JDK > folder.
External Libraries
Create "libs" folder in app directory copy your jar file in libs folder right click on your jar file in Android Studio and Add As library... Then open build.gradle and add this:
dependencies { implementation files('libs/your jar file.jar') }