我在Android Studio 1.1中创建了一个新项目,并且我已成功构建。之后,我添加了一个jar库并更新了build.gradle文件
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:21.0.3'
compile files('libs/commons-logging-1.1.1.jar')
compile files('libs/google-api-client-1.18.0-rc.jar')
compile files('libs/google-api-client-android-1.18.0-rc.jar')
compile files('libs/google-api-client-appengine-1.18.0-rc.jar')
compile files('libs/google-api-client-gson-1.18.0-rc.jar')
compile files('libs/google-api-client-jackson2-1.18.0-rc.jar')
}
现在,我收到错误"本地路径不存在。" 我搜索有关此问题的其他问题,但我无法解决。请帮帮我!
答案 0 :(得分:0)
如果您使用
compile fileTree(dir: 'libs', include: ['*.jar'])
然后无需逐个添加每个.jar
文件,这意味着您必须从build.gradle
开始重新发送。
compile files('libs/commons-logging-1.1.1.jar')
compile files('libs/google-api-client-1.18.0-rc.jar')
compile files('libs/google-api-client-android-1.18.0-rc.jar')
compile files('libs/google-api-client-appengine-1.18.0-rc.jar')
compile files('libs/google-api-client-gson-1.18.0-rc.jar')
compile files('libs/google-api-client-jackson2-1.18.0-rc.jar')
答案 1 :(得分:0)
如果添加了jar库,Gradle文件应该已正确更新。 Local path doesn't exist
表示您要编译的文件之一不在您指定的路径中。