0

i couldn't find a way to add this library to my Android Studio project

i need to know where should extract this file

https://github.com/SundeepK/CompactCalendarView

2 Answers2

2

add this line

compile 'com.github.sundeepk:compact-calendar-view:1.8.4'

to build.gradle (Module:app) to make the dependencies section look something like

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    testCompile 'junit:junit:4.12'
    compile 'com.android.support:appcompat-v7:23.3.0'
    compile 'com.github.sundeepk:compact-calendar-view:1.8.4'
}
tibbi
  • 249
  • 4
  • 27
0

just add

compile 'com.github.sundeepk:compact-calendar-view:1.8.4'

on your

build.gradle (Module: app)

in the section of dependencies

bambolz
  • 33
  • 2
  • 7