解決duplicate entry:com/android/volley/AuthFailureError.class重複パッケージインポート

416 ワード

この問題は、パケットの重複インポートによるもので、一般的にapp moduleとlibrary moduleで同じjarパケットがインポートされたため、タイトルの問題に対して
appのbuild.gradleで
android{
   //other
   configurations {
    all*.exclude group: 'com.android.volley'
   }
}

duplicate entry:com/mopub/volley/AuthFailureError.classは
android{
   //other
   configurations {
    all*.exclude group: 'com.mopub.volley'
   }
}