user6947530
user6947530

Reputation:

Cannot find Google Awareness API

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?

Upvotes: 1

Views: 154

Answers (1)

Ajith Pandian
Ajith Pandian

Reputation: 1342

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'

Upvotes: 2

Related Questions