生成apk时候报错了,这是为啥

#1

#2

好吧,解决了。

#3

可以写下为什么…

#4

增加第三方组件出现这错误一般执行gradlew clean就搞定了

#5

在 module 下的 build.gradle

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

改为

dependencies {
    compile 'com.nineoldandroids:library:2.4.0'
}

就可以了