I'm making a mobile game using Unity for Android. My problem is that I have a dependencies conflict error whenever I'm installing the Unity Mediation package. Here is the error :
Some conflicting dependencies were found.
The following dependency versions were modified:
com.unity3d.mediation:mediation-sdk:[1.0,2.0[ --> com.unity3d.mediation:mediation-sdk:
[1.0,2.0[
com.unity3d.mediation:unityads-adapter:[1.0,2.0[ --> com.unity3d.mediation:unityads-
adapter:[1.0,2.0[
UnityEngine.Debug:LogWarning (object)
Google.Logger:Log (string,Google.LogLevel)
GooglePlayServices.PlayServicesResolver:Log (string,Google.LogLevel)
GooglePlayServices.GradleResolver/<>c__DisplayClass7_0:<GradleResolution>b__2
(GooglePlayServices.CommandLine/Result)
GooglePlayServices.GradleResolver/<>c__DisplayClass7_1:<GradleResolution>b__9 ()
Google.RunOnMainThread:ExecuteNext ()
Google.RunOnMainThread/<>c:<ExecuteAll>b__24_0 ()
Google.RunOnMainThread:RunAction (System.Action)
Google.RunOnMainThread:ExecuteAll ()
Google.RunOnMainThread:Run (System.Action,bool)
GooglePlayServices.GradleResolver/<>c__DisplayClass7_0:<GradleResolution>b__8
(GooglePlayServices.CommandLine/Result)
GooglePlayServices.CommandLineDialog/ProgressReporter:SignalComplete ()
GooglePlayServices.CommandLineDialog/ProgressReporter:CommandLineToolCompletion
(GooglePlayServices.CommandLine/Result)
GooglePlayServices.CommandLine/<>c__DisplayClass4_1:<RunAsync>b__1 ()
Google.RunOnMainThread:ExecuteNext ()
Google.RunOnMainThread/<>c:<ExecuteAll>b__24_0 ()
Google.RunOnMainThread:RunAction (System.Action)
Google.RunOnMainThread:ExecuteAll ()
UnityEditor.EditorApplication:Internal_CallUpdateFunctions ()
I have been looking for a solution for many hours. The real problem is that because of this dependencies conflict I can't build my project because the Gradle plugin won't work (the given error being the usage of a deprecated command). Have you got any idea how to solve this ?
Thanks in advance