How do I Import a library from github in Android Studio? -
[i'm newbie] want include git library in android studio -> https://github.com/florent37/materialviewpager tried this. new-> import module -> downloaded file address it's giving errors.
you dont have import module . put path in build.gradle dependencies , use described. e.g:
dependencies { compile ('com.github.florent37:materialviewpager:1.0.3.2@aar'){ transitive = true } }
Comments
Post a Comment