How can I add a JAR in my gradle project?
just add
compile fileTree(dir: 'libs', include: '*.jar')
to your dependencies
in the build.gradle
then all the jars in the libs folder will be included.
Put the jar in a folder called libs (created on the root of your project). Once moved right click on the jar and you will find "add as library". Click on it and select the module!