android 工作室依赖项 apache.commons.logging 失败
android studio dependencies apache.commons.logging failure
dependency commons-logging but failure and throw
error:java.lang.ClassNotFoundException:
org.apache.commons.logging.LogFactory
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'commons-logging:commons-logging:1.1.3'
compile 'log4j:log4j:1.2.17'
compile 'org.springframework:spring-core:4.0.2.RELEASE'
compile 'com.android.support:appcompat-v7:23.0.1'
compile project(':volley')}
您可以尝试andle同步您的依赖版本。
这是我在github上写的一个小工具:https://github.com/Jintin/andle
执行后,控制台显示结果。
commons-logging:commons-logging: 1.1.3 -> 99.0-does-not-exist
如果你仍然想使用它,你可以找到 jar 来包含而不是使用 gradle。
dependency commons-logging but failure and throw error:java.lang.ClassNotFoundException: org.apache.commons.logging.LogFactory
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'commons-logging:commons-logging:1.1.3'
compile 'log4j:log4j:1.2.17'
compile 'org.springframework:spring-core:4.0.2.RELEASE'
compile 'com.android.support:appcompat-v7:23.0.1'
compile project(':volley')}
您可以尝试andle同步您的依赖版本。
这是我在github上写的一个小工具:https://github.com/Jintin/andle
执行后,控制台显示结果。
commons-logging:commons-logging: 1.1.3 -> 99.0-does-not-exist
如果你仍然想使用它,你可以找到 jar 来包含而不是使用 gradle。