Android Studio导入库Gradle:错误:包org.simpleframework.xml不存在

时间:2013-07-09 10:59:47

标签: gradle android-studio simple-framework

我无法在Android Studio中制作项目。 编译项目时我遇到了一些错误:

Gradle: error: package org.simpleframework.xml does not exist
Gradle: error: cannot find symbol class Element
Gradle: error: cannot find symbol class Element

我手动添加jar,从Dependencies添加到项目。

如何解决?!

好的,我解决了。 问题解决了。我手动添加到配置文件库libs / simple-xml-2.7.jar。

dependencies {
    compile files('libs/android-support-v4.jar', 'libs/commons-net-3.3.jar', 'libs/simple-xml-2.7.jar')
}

1 个答案:

答案 0 :(得分:2)

您还可以使用Maven在 build.gradle 中声明该依赖关系,如下所示:

dependencies {
    [...]
    compile 'org.simpleframework:simple-xml:2.7'
}

还要确保将maven central声明为存储库:

repositories {
    [...]
    mavenCentral()
}

如果你想自己下载.jars,另一个常见的解决方案是在libs /中包含任何.jar,就像那样:

dependencies {
    compile fileTree(dir: 'libs', include: '*.jar')
    [...]
}

无论如何,请确保您不会多次包含库,这可能会导致问题。