I upgraded my build.gradle file from
compile \'com.google.android.gms:play-services:8.4.0\'
to
compile \'com.google.android.g
When changing play services to a version above 10.2.1 my dependencies started to fail resolving.
I found out that changing the following maven URL solved the issue:
maven { url 'https://raw.githubusercontent.com/onepf/OPF-mvn-repo/master/' }
to
maven { url 'https://github.com/onepf/OPF-mvn-repo/raw/master/' }
It might that the URL change avoids a cache it in gradle or maven and that resolves it.