Following a guide from the official documentation, I have attempted to add the Awareness APIs as a dependency of my application using the following statement:
compile "com.google.android.gms:play-services-contextmanager:9.6.1"
However, it doesn't seem to work. What am I doing wrong?
The Awareness API dependency has been renamed to com.google.android.gms:play-services-awareness
. Your compile statement should be as follows:
compile 'com.google.android.gms:play-services-awareness:9.6.1'