几天前我已更新到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
有人知道它的原因吗?
答案 0 :(得分:0)
最后,我发现了问题。它是由AndroidVideoCache库引起的。要解决它,只需替换它(在我的具体情况下):
compile 'com.danikula:videocache:2.6.3'
通过
compile('com.danikula:videocache:2.6.3') {
exclude group: 'com.google.android', module: 'android'
}