2016-09-22 5 views
2

数日前Android Studio 2.2にアップデートしました。この後、私は私のプロジェクトでは、警告のカップルを持っていた:Androidスタジオ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' 
} 
関連する問題