我的主项目和我的依赖项目位于同一根目录
喜欢
我的根目录:AndroidProjects:
Android的NRF-工具箱主
Android的DFU库释放
报告错误:
错误:(24)评估项目':app'。
时出现问题带路径的项目' ..:DFULibrary:dfu'无法在项目':app'。
中找到
My build.gradle
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:22.1.1'
compile project(':..:DFULibrary:dfu')
compile files('libs/achartengine-1.1.0.jar')
compile files('libs/nrf-logger-v2.0.jar')
}
settings.gradle
include ':app', '..:DFULibrary:dfu'
请告诉我这里缺少什么。
答案 0 :(得分:0)
更改compile project(':..:DFULibrary:dfu')
到compile project(':DFULibrary:dfu')
。