场合
我正在尝试将Custom-Calendar-View
libary用于我当前的项目。图书馆的源代码在这里:
https://github.com/npanigrahy/Custom-Calendar-View
如果我使用Gradle导入库,我可以导入它:
compile 'com.github.npanigrahy:Custom-Calendar-View:v1.1'
http://stacktips.com/tutorials/android/custom-calendar-view-library-in-android
之后,我发现v1.1有最新的更新并正确导入了库。但是,我正在尝试手动导入库,以便我可以使用示例项目来更好地了解事情是如何工作的,因为我最终需要分叉和修改库以适应我的用法。
错误:
Configuration with name 'default' not found.
我的设置
.
./app
./app/build.gradle
./libs
./libs/Custom-Calendar-View
./libs/Custom-Calendar-View/settings.gradle
./settings.gradle
我添加的内容
1.下载自定义日历视图的zip。拉开拉链。将其复制到./libs
2.在./settings.gradle
中添加
include ':app', ':libs:Custom-Calendar-View
3.已添加到./app/build.gradle
dependencies {
compile project(':libs:Custom-Calendar-View')`
}
4.我尝试了Clean Project
,Rebuild Project
,Sync
。到目前为止没有任何作用。
5.我甚至尝试过git submodule init
和git submodule update
Custom-Calendar-View
使用位于Custom-Calendar-View/library
我的问题
1.我是否需要导入库以便能够使用示例项目?如果我使用Gradle导入库,我在项目中看不到它。
2.我真的不知道自己做错了什么。我觉得所有这些链接都给出了相同的建议。
链接
Cannot change dependencies of configuration (after enabling instant run)
Configuration with name 'default' not found while building android project on gradle
Configuration with name 'default' not found. Android Studio
Error: Configuration with name 'default' not found in Android Studio
How to import a sample from a library on github into android studio
https://github.com/MagicMicky/FreemiumLibrary/wiki/Import-the-library-in-Android-Studio
答案 0 :(得分:0)
所以这篇文章有点解决了手动导入库的问题: unable to import library project in android studio
但是,我没有在任何地方看到示例项目。