google-play-services

Does Google play services version being out-dated not let the app to run?

情到浓时终转凉″ 提交于 2019-12-22 10:57:36
问题 I am developing a simple application to show a map. For this i am testing my application on a real device as: Samsung Galaxy Europa (Android 2.2) . Unfortunately my application is being closed/crashed forcely with lots of errors being viewed in logcat (i am mentioning along with my code). I have included google_play_services_lib as per the rules but in-vain. And Yes i have scratched every bit of solutions mentioned here like: Solution 1 - Google play services out of date Solution 2 - Google

Use case for play-services-base google play service

一世执手 提交于 2019-12-22 10:56:35
问题 I am bit confused about use case of com.google.android.gms:play-services-base:8.4.0 From the play service documents it says this is for Google Actions, Base Client Library Questions are:- 1) Use case for this Particular Service? 2) If it is base client Service, Does that means if we have already added this library we wont need to add any sub library/service like location? Edit:- Corrected Service name 回答1: it says this is for Google Actions, Base Client Library No, it does not. That is GCM,

Error in setting up Google play services in unity

天大地大妈咪最大 提交于 2019-12-22 09:47:26
问题 Following the instruction on google play games plugin for unity, I have not been able to set it up correctly. My application crashes on signing in, with the following log output (with no more details). I've got no luck in finding a probable cause and searches seems to be out of any useful tip. The actual error is displayed as: Application ID () must be a numeric value. Please verify that your manifest refers to the correct project ID The complete log output: 10-08 19:43:49.581 25688-25734/? E

Changing the certificate fingerprint for an existing application

两盒软妹~` 提交于 2019-12-22 09:36:29
问题 I have an existing application that i published in to google play. All was fine, until I have changed a computer and my sha1 fingerprint changed. Is there a possible way to change the sha1 for an existing application in google play developer console? if not, how can I deal with it? Thank you! 回答1: If you remember, when you publish the app first time on your older computer, you generate a key.keystore in order to sign the apk file and publish to google play. You need to have the same file.

Fused Location sometimes STOPS

别说谁变了你拦得住时间么 提交于 2019-12-22 08:37:21
问题 I've been working on an app that tracks the user's position. For this I have used the google play services location module (a.k.a. fused location). All in all everything works fine. BUT sometimes, completely random, I no longer receive location updates from the google location services, at all! I mean, my app is working fine, but no location updates. Not only that,if I start up google maps it can't get a fix on my location (even with GPS turned on). Reinstalling my app doesn't fix the issue.

Android Version Conflict for Google Services

烈酒焚心 提交于 2019-12-22 08:33:49
问题 I've searched for a lot of solutions to this, but none fit my exact case. I am getting this error on Gradle Sync: Error:Execution failed for task ':app:processDebugGoogleServices'. Please fix the version conflict either by updating the version of the google-services plugin (information about the latest version is available at https://bintray.com/android/android-tools/com.google.gms.google-services/) or updating the version of com.google.android.gms to 11.4.2. this is in my build.gradle (app)

How to remove a Google Play Leaderboard highscore

淺唱寂寞╮ 提交于 2019-12-22 08:03:03
问题 I've just published my game and I see that the high score from testing is still present as the high-score. How do I remove it/reset the leaderboard? 回答1: In game load leaderboard or achievements -- in right top corner click settings -- sharing -- Disconnect (with check box "also delete all activities in google"). It will remove all your scores 回答2: Answer - you can't. Leaderboards are fixed after publishing and you can't remove entries. I could either hide the dubious score, or, as I did,

How to get Current GPS location(latitude-longitude) using Google API in Android App?

眉间皱痕 提交于 2019-12-22 08:02:31
问题 I want to get GPS location using Google API. My code: mGoogleApiClient = new GoogleApiClient.Builder(this) .addConnectionCallbacks(this) .addOnConnectionFailedListener(this) .addApi(LocationServices.API) .build(); locationManager = (LocationManager) getSystemService(Context.LOCATION_SERVICE); @Override public void onConnected(Bundle bundle) { mLocation = LocationServices.FusedLocationApi.getLastLocation(mGoogleApiClient); double lat = mLocation.getLatitude(); double lon = mLocation

Why do Google recommend copying libraries into your tree?

南楼画角 提交于 2019-12-22 07:53:47
问题 Google's instructions for using the Play Service API (for example) say: Copy the /extras/google/google_play_services/libproject/google-play-services_lib library project into the source tree where you maintain your Android app projects. Note: You should be referencing a copy of the library that you copied to your source tree—you should not reference the library from the Android SDK directory. This seems ugly to me - why not reference it from the SDK directory? Is there some technical reason

Why do Google recommend copying libraries into your tree?

牧云@^-^@ 提交于 2019-12-22 07:53:24
问题 Google's instructions for using the Play Service API (for example) say: Copy the /extras/google/google_play_services/libproject/google-play-services_lib library project into the source tree where you maintain your Android app projects. Note: You should be referencing a copy of the library that you copied to your source tree—you should not reference the library from the Android SDK directory. This seems ugly to me - why not reference it from the SDK directory? Is there some technical reason