How to include GitHut library in my project (Android Studio) -


i trying add library project because want change in class there. why adding dependencies in gradile setting not enough.

i know in library says "if want use library, have download materialdesign project, import workspace , add project library in android project settings.". mean, should copy files , put them in libs folder ?

quoting the documentation:

if want use library, have download materialdesign project, import workspace , add project library in android project settings.

step #1: download project, whether via zip file github gives or using git clone repository

step #2: move materialdesign/ directory project directory, peer of existing app/ module

step #3: modify settings.gradle in project directory include :materialdesign in list of modules build

step #4: in app module's build.gradle file, add compile project(':materialdesign') dependencies


Comments

Popular posts from this blog

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -