2016-09-22 3 views
2

며칠 전 Android Studio 2.2로 업데이트되었습니다. 이 후, 내 프로젝트에서 몇 가지 경고가 발생했습니다.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 

누구나 그 이유를 알고 계십니까?

+2

유사한 오류로 ? id = 222538 –

+0

duplicate : http : //stackoverflow.com/questions/37324917/new-warning-when-building-android-app-with-gradle – xsveda

+0

@xsveda와 같은 오류가 있습니까? –

답변

0

마침내 문제가 발생했습니다. AndroidVideoCache 라이브러리 때문에 발생했습니다. 그것을 해결하려면 (내 특정 경우)이 대체 :

compile 'com.danikula:videocache:2.6.3' 

여기 https://code.google.com/p/android/issues/detail보고

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