在android studio项目中添加一个库?

时间:2016-06-28 21:21:07

标签: android android-gradle android-studio-2.0

我找不到将此库添加到Android Studio项目的方法

我需要知道应该在哪里提取这个文件

https://github.com/SundeepK/CompactCalendarView

2 个答案:

答案 0 :(得分:1)

添加此行

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'
}

答案 1 :(得分:0)

只需添加

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

在你的

build.gradle(Module:app)

在依赖关系部分