google-play-services
Missing api_key/current key with Google Services 3.0.0 and Maps API key in build.gradle
Have you tried putting an empty “current_key” as follows: “api_key”: [{ “current_key”: “” }] See how that goes. EDIT: You should replace “api_key”: [] (located in “client”) with “api_key”: [{ “current_key”: “” }]
Google play services returning a token signed with a non-Google key
A bit late, but for anyone experiencing the same, I would suggest to check the Installer of your app. Using PackageManager.getInstallerPackageName() getInstallerPackageName (String packageName) Retrieve the package name of the application that installed a package. This identifies which market the package came from If the value is “com.android.vending” then the app was installed from the … Read more
Google Play Service location API returns wrong location sometimes
The Location that you get from the API will have accuracy in meters. You should also check how old the location is. https://developer.android.com/reference/android/location/Location.html#getAccuracy() https://developer.android.com/reference/android/location/Location.html#getTime() People generally discard the location if accuracy is greater than 50 or 100m. Why this happens? It takes some time for the GPS of the device to find satellites and get … Read more