可能有人解释我如何在我的android studio的项目中添加一个库?
这是图书馆:https://github.com/code-troopers/android-betterpickers
我想使用重复选择器。提前致谢
答案 0 :(得分:0)
打开此文件并在其中,您会发现以下旁边的图标可能不一样
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)