如何从 github 导入库?
How to import a library from github?
我不明白如何在我的新项目中添加库。
https://github.com/txusballesteros/bubbles-for-android
我看到了类似的帖子,但我的项目中没有这个库。
Error:Configuration with name 'default' not found.
当我添加库时,我可以更改原始源代码吗?我可以使用它吗,因为我阅读了相同的许可证?
请帮帮我,我试了很多方法都失败了。
将以下内容添加到您的 Build.Gradle 依赖块下,然后同步。项目。现在您可以在代码中使用该库方法。
compile 'com.txusballesteros:bubbles:1.2.1'
在您的应用级别 build.gradle 文件(而非项目级别)中添加库依赖项。您不需要下载任何库文件只需添加此依赖项并同步项目
dependencies {
...
compile 'com.txusballesteros:bubbles:1.2.1'
}
找到您的 build.gradle 文件:
- 转到
android view
(这种方式最简单)
- 找到
Gradle Scripts
文件夹:
- 找到您正确的 build.gradle 文件(观看,其中有 2 个看起来相似):
- 根据图片添加这条语句(
compile 'com.txusballesteros:bubbles:1.2.1'
):
- 干得好
我不明白如何在我的新项目中添加库。
https://github.com/txusballesteros/bubbles-for-android
我看到了类似的帖子,但我的项目中没有这个库。
Error:Configuration with name 'default' not found.
当我添加库时,我可以更改原始源代码吗?我可以使用它吗,因为我阅读了相同的许可证?
请帮帮我,我试了很多方法都失败了。
将以下内容添加到您的 Build.Gradle 依赖块下,然后同步。项目。现在您可以在代码中使用该库方法。
compile 'com.txusballesteros:bubbles:1.2.1'
在您的应用级别 build.gradle 文件(而非项目级别)中添加库依赖项。您不需要下载任何库文件只需添加此依赖项并同步项目
dependencies {
...
compile 'com.txusballesteros:bubbles:1.2.1'
}
找到您的 build.gradle 文件:
- 转到
android view
(这种方式最简单) - 找到
Gradle Scripts
文件夹:
- 找到您正确的 build.gradle 文件(观看,其中有 2 个看起来相似):
- 根据图片添加这条语句(
compile 'com.txusballesteros:bubbles:1.2.1'
):
- 干得好