更新到Android Studio 2.2后,Gradle关于工件的警告

时间:2016-09-22 06:39:48

标签: android-studio gradle warnings

几天前我已更新到Android Studio 2.2。在此之后,我的项目中出现了一些警告:

Warning:Ignoring Android API artifact com.google.android:android:1.6_r2 for debug
Warning:Ignoring Android API artifact com.google.android:android:1.6_r2 for release

有人知道它的原因吗?

1 个答案:

答案 0 :(得分:0)

最后,我发现了问题。它是由AndroidVideoCache库引起的。要解决它,只需替换它(在我的具体情况下):

compile 'com.danikula:videocache:2.6.3'

通过

compile('com.danikula:videocache:2.6.3') {
    exclude group: 'com.google.android', module: 'android'
}