добавить библиотеку в проект Android Studio?

я не смог найти способ добавить эту библиотеку в свой проект Android Studio

мне нужно знать, где извлечь этот файл

https://github.com/SundeepK/CompactCalendarView


person Saad ELALLAM    schedule 28.06.2016    source источник


Ответы (2)


добавить эту строку

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

в build.gradle (Module:app), чтобы раздел зависимостей выглядел примерно так

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'
}
person tibbi    schedule 28.06.2016

просто добавь

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

на ваше

build.gradle (Модуль: приложение)

в разделе зависимости

person bambolz    schedule 28.06.2016
comment
куда я должен положить загруженный файл? - person Saad ELALLAM; 29.06.2016