I'm trying to use google fit api for getting step count. I'm using the starter guide When i try to paste the code
private GoogleApiClient mClient = null;
Android studio can't find the "com.google.android.gms.common.api" package and the GoogleApiClient class.
i added
compile 'com.google.android.gms:play-services:7.0.0'
to my gradle.
Any suggestions? Thanks
EDIT:
I changed the gradle to compile 'com.google.android.gms:play-services:6.5.87' And now it works... does any one know why the 7.0.0 doesn't work? Thanks