So I have tried to add my local .jar file dependency to my build.gradle file:
apply plugin: \'java\' sourceSets { main { java { srcD
A simple way to do this is
compile fileTree(include: ['*.jar'], dir: 'libs')
it will compile all the .jar files in your libs directory in App.