Whenever I have to add certain library from the internet to my Android project, I add them inside the dependencies in the app level gradle script and it downloads the librar
Put library's jar file inside libs folder. Add this line in module level build.gradle (if not present):
dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) // Other libraries }