Reputation: 301
In this revision google_play_services_lib is split into smaller projects and seems to be located at \extras\google\m2repository.
This answer Missing "<sdk>/extras/google/google_play_services/libproject" folder after update to revision 30 ][1]
suggests to unzip and import the projects separated.
But what is the dependency on these projects? Which projects I have to import to run banners and internationals?
Upvotes: 0
Views: 1637
Reputation: 199920
Per the play-services-ads-9.4.0.pom
found in the <sdk-dir>\extras\google\m2repository\com\google\android\gms\play-services-ads\9.4.0
directory, the play-services-ads
dependency needed for banner ads depends on to the following other libraries:
play-services-ads-lite
play-services-clearcut
play-services-gass
play-services-base
(which requires play-services-tasks
)play-services-basement
You'd need to manually package each one, including all resources. You'll also need to manually add everything in the AndroidManifest.xml in each .aar
to your AndroidManifest.xml (these would normally be added for you by Gradle).
Upvotes: 1