如何添加android studio库

时间:2017-06-17 18:52:55

标签: java android picker

可能有人解释我如何在我的android studio的项目中添加一个库?

这是图书馆:https://github.com/code-troopers/android-betterpickers

我想使用重复选择器。提前致谢

3 个答案:

答案 0 :(得分:0)

enter image description here

打开此文件并在其中,您会发现以下旁边的图标可能不一样

dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
    compile 'com.code-troopers.betterpickers:library:3.1.0' //add this line here
}

答案 1 :(得分:0)

您需要在项目中添加此库作为依赖项(假设您使用android studio)在 gradle 构建脚本中添加此依赖项:

 dependencies {  
        compile group: 'com.code-troopers.betterpickers', name: 'library', version: '3.1.0'
}

答案 2 :(得分:0)

您需要此依赖项,您可以在链接

中的所有屏幕截图下方找到该依赖项

enter image description here

然后在项目中找到此文件:

enter image description here

将您的依赖性放在依赖性块中:

enter image description here

之后,您将看到gradle文件已更改且需要项目同步的消息。按“立即同步”