We have a very simple java SDK that can be imported in any android APP to do some basic tasks. One of the functionality of this SDK is to read the AAID
, so we depend on Google-Play-Services.
Our current approach is use gradle java plugin
and add the play-services.jar
as a dependancy to our project. The latest versions of the google-play-services
are packaged as .aar
. So I need to know if there is any efficient way to do this or extract the aar and add the classes.jar as dependancy. While that will still work but I feel the entire solution is hacky.
I need to know what is the right way to get this done?
Thanks