Good day. After updating google repository in AndroidStudio, I have an issue
> Error:Execution failed for task \':app:transformClassesWithJarMergingForDe
For me the issue was caused by com.google.android.exoplayer conflicting with com.facebook.android:audience-network-sdk.
I fixed the problem by excluding the exoplayer library from the audience-network-sdk :
compile ('com.facebook.android:audience-network-sdk:4.24.0') {
exclude group: 'com.google.android.exoplayer'
}