playgameservices / play-games-plugin-for-unity

Google Play Games plugin for Unity
Other
3.45k stars 961 forks source link

Appodeal compatibility #2175

Open sebastianteres opened 6 years ago

sebastianteres commented 6 years ago

Getting the following error resolving dependencies:

Resolution failed

Failed to fetch the following dependencies:
com.google.android.gms:play-services-clearcut:11.6.2

I'm using:

I first installed Play Games Plugin, then Appodeal unchecking PlayServicesResolver folder

Any clues?

BaldBeardedMonk commented 6 years ago

Contacted Appodeal support and they provided a temporary workaround. I was having the below dependency issues

Failed to fetch the following dependencies:
com.google.android.gms:play-services-ads:9.8
com.google.android.gms:play-services-location:9.8

Workaround .. 1 Install the Appodeal plugin without the PlayServicesResolver folder.

  1. To file Assets / GooglePlayGames / Editor / m2repository / com / google / games / gpgs-plugin-support / 0.9.50 / gpgs-plugin-support-0.9.50.pom Add:
<groupId>com.google.android.gms</groupId>
<artifactId>play-services-ads</artifactId>
<version>11.6+</version>
<scope>compile</scope>
</dependency>

<groupId>com.google.android.gms</groupId>
<artifactId>play-services-location</artifactId>
<version>11.6+</version>
<scope>compile</scope>
</dependency>

3) Launch the Google Play Games Resolver.

So i suppose we need to manually add the missing dependencies in the .pom file.