我不明白如何在我的新项目中添加库。
https://github.com/txusballesteros/bubbles-for-android
我看到了类似的帖子,但我没有在我的项目中获得该库。
Error:Configuration with name 'default' not found.
当我添加库时,我可以更改原始源代码吗?我可以使用它,因为我读到了相同的许可证吗?
请帮助我,我尝试了很多方法而且失败了。
答案 0 :(得分:0)
在依赖块下的Build.Gradle中添加以下内容,然后同步。项目。现在,您可以在代码中使用该库方法。
compile 'com.txusballesteros:bubbles:1.2.1'
答案 1 :(得分:0)
在应用程序级build.gradle文件(而非项目级别)中添加库依赖项。您不需要下载任何库文件只需添加此依赖项并同步项目
dependencies {
...
compile 'com.txusballesteros:bubbles:1.2.1'
}
答案 2 :(得分:0)