Download Google Play for above 11.0.4

Where, where to download aar go-play-services files for version 11.6.0 or higher 11.0.4

I know that just adding a dependency in applications build.gradleadds a library to it.

compile 'com.google.android.gms:play-services-location:11.6.0'
compile 'com.google.android.gms:play-services-ads:11.6.0'

This is true for Android Studio.

But as Unity Developer , I downloaded the Google Mobile Ads Unity plugin, which after import gives game service announcements, lite, basement, gass version 11.6.0

Now we have some location dependency in our project. So I downloaded the Android SDK and saved it along the way.

/Users/USERNAME/Library/Android/sdk

After switching to /Users/USERNAME/Library/Android/sdk/extras/google/m2repository/com/google/android/gms,

I got the latest game services library version 11.0.4 , and if I tried to create an Android Studio project by adding a GPS dependency on 11.6.0, adding it would be correct.

So my question is:

where the game services library version 11.6.0 is loaded. So that I can go to this place and get the whole aar file needed for my Unity project

+4
source share
2 answers

Listed below are the details of the Android developer documentation:

Program Access:

For programmatic access to Google Maven artifacts, you can get an XML list of artifact groups from maven.google.com/master-index.xml ( link ), which gives a group path

:

maven.google.com/group_path/group-index.xml

, android.arch.lifecycle maven.google.com/android/arch/lifecycle/group-index.xml().

POM JAR : maven.google.com/group_path/library/version/library-version.ext

:

maven.google.com/android/arch/lifecycle/compiler/1.0.0/compiler-1.0.0.pom. ()

: https://developer.android.com/studio/build/dependencies.html#gmaven-access

Google Play . xml: https://dl.google.com/dl/android/maven2/com/google/android/gms/group-index.xml

: AAR Google Play Services, :

https://dl.google.com/dl/android/maven2/com/google/android/gms/play-services-location/11.6.0/play-services-location-11.6.0.aar

, , , , .

. pom , Google Play Services. , .

[]:

Google Unity Jar Resolver :

https://github.com/googlesamples/unity-jar-resolver

+5

Source: https://habr.com/ru/post/1690321/


All Articles