I am getting below error,
Error:Conflict with dependency 'com.google.guava:guava' in project ':app'.
Resolved versions for app (18.0) and test app (16.0.1) differ
after adding the below line..
compile 'com.mobgen.halo.android:halo-plugin:2.0.0'
to dependencies in build.gradle file
below is the snapshot of build.gradle file
i tried adding below 2 approaches in build.gradle file, but didnt work
1.
configurations.all {
resolutionStrategy.force 'com.google.guava:guava:18.0'
}
2.
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2') {
exclude group: 'com.google.guava:guava'
}