Search code examples
androidgoogle-play-servicesgoogle-awareness

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?


Solution

  • 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'