Play services resolver help

Hey guys, I’m having real trouble using the play services resolver here. I’ve imported the Unity package and the info says i can put a dependencies.xml in my project folder to specify dependencies. The example layout they give is this:

<dependencies>
  <androidPackages>
    <androidPackage spec="com.google.android.gms:play-services-games:9.8.0">
      <androidSdkPackageIds>
        <androidSdkPackageId>extra-google-m2repository</androidSdkPackageId>
      </androidSdkPackageIds>
    </androidPackage>
  </androidPackages>
</dependencies>

I’ve tried to modify this for the packages that I need for a custom plugin I’m writing, but whenever I do this Unity just gives an error saying “Gradle failed to fetch dependencies.”

How would I set up my dependencies.xml file to correctly resolve these libraries?

  • com.android.support:appcompat-v7:25.3.1
  • com.android.support:design:25.3.1
  • com.android.support:cardview-v7:25.3.1
  • com.android.support:support-v13:25.3.1
  • ly.count.android:sdk:17.05
  • life.knowledge4:k4l-video-trimmer:1.0

Here’s what I’ve tried (just for one package):

<dependencies>
  <androidPackages>
    <androidPackage spec="com.android.support:appcompat-v7:25.3.1">
      <androidSdkPackageIds>
        <androidSdkPackageId>appcompat-v7</androidSdkPackageId>
      </androidSdkPackageIds>
    </androidPackage>
  </androidPackages>
</dependencies>

Here’s the full error:

Same error i got solution please unity 2018.1 or 2017 both error HElp

I’m curious about this too. My build is failing due to my support library version being too low.

Hey guys sorry for the question but the resolved library by the resolver it is dot net version independent?