我想添加外部库“
github.com/AnderWeb/discreteSeekBar
“到我的Android应用程序。
我尝试使用Gradle同步,我也试过这个例子。
导入此lib以进行布局的任何其他方法? 如果我有代理连接可能会有问题吗?
我使用android studio 2.1.2。
答案 0 :(得分:1)
如果只是添加到项目中的外部库,请按照以下步骤操作:
转到app gradle并为您的外部库添加依赖关系。
编译文件(' libs / your_external_library')
为您的项目提供支持。
它为我工作。
答案 1 :(得分:0)
添加此
dependencies {
compile 'org.adw.library:discrete-seekbar:1.0.1'
}
还要检查是否添加了
repositories {
jcenter()
}
在YourProject-> build.gradle 中