Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Google Play Services 9.2.0 Selective Compile Awareness API

I'm trying to use the new Awareness API in an app but the only way that I can include it in my code is by using

compile 'com.google.android.gms:play-services:9.2.0'

in my gradle file.

I tried using

compile 'com.google.android.gms:play-services-awareness:9.2.0'

but it doesn't seem to exist.

Does anyone know what the correct compile path for selective compile of the awareness API is?

Thanks in advance.

like image 835
joaomgcd Avatar asked Mar 25 '26 09:03

joaomgcd


1 Answers

It actually does exist.

//Awareness API

compile 'com.google.android.gms:play-services-contextmanager:9.2.0'
like image 123
buddhabath Avatar answered Mar 26 '26 22:03

buddhabath