如何从github导入库?

时间:2016-11-28 15:43:28

标签: android android-library android-studio-import

我不明白如何在我的新项目中添加库。

https://github.com/txusballesteros/bubbles-for-android

我看到了类似的帖子,但我没有在我的项目中获得该库。

Error:Configuration with name 'default' not found.

当我添加库时,我可以更改原始源代码吗?我可以使用它,因为我读到了相同的许可证吗?

请帮助我,我尝试了很多方法而且失败了。

3 个答案:

答案 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)

找到您的build.gradle文件:

  1. 转到android view(最简单的方法)
  2. 找到Gradle Scripts文件夹:
  3. enter image description here

    1. 找到正确的build.gradle文件(观看它,其中有两个看起来相似):
    2. enter image description here

      1. 根据图片
      2. 添加此声明(compile 'com.txusballesteros:bubbles:1.2.1'

        enter image description here

        1. 很高兴