Questions tagged [google-play-services]

With Google Play services, your Android app can take advantage of the latest, Google-powered features such as Maps, Google+, and more, with automatic platform updates distributed as an APK through the Google Play store. This makes it faster for your users to receive updates and easier for you to integrate the newest that Google has to offer.

Give your Android apps more features to attract users on a wider range of devices. With Google Play services, your app can take advantage of the latest, Google-powered features such as Maps, Google+, and more, with automatic platform updates distributed as an APK through the Google Play store. This makes it faster for your users to receive updates and easier for you to integrate the newest that Google has to offer.

The latest version is 12.6.88, which was released in May 2018.

References:

7207 questions
3
votes
1 answer

Google Play Services - Location Xamarin Android

I have implements Google Play Services background location tracking in my app. I have used Location Manager before but it didn't work on some devices. There is very weird thing while using device. Since I have released GooglePlayServices most of…
miechooy
  • 3,178
  • 12
  • 34
  • 59
3
votes
1 answer

How can I change/add google-services.json search location

Now Google Services Plugins trying to find it in two dirs: * What went wrong: Execution failed for task ':krq-player-android:processDebugGoogleServices'. > File google-services.json is missing. The Google Services Plugin cannot function without it.…
Alexandr
  • 3,859
  • 5
  • 32
  • 56
3
votes
1 answer

Unable to instantiate application com.google.android.gms.common.app.GmsApplication

I have got a problem when running my app on Android 4.4 (on some devices) with Google Play Services version 100884030. I get the following error: FATAL EXCEPTION: main Process: com.google.android.gms, PID: 8678 java.lang.RuntimeException: Unable to…
toto_tata
  • 14,526
  • 27
  • 108
  • 198
3
votes
0 answers

Android achievements are reset after one day

Yesterday I launched my game and I started getting errors from people. One of the bugs they (all) seem to have is that their achievements are being reset at least every day but sometimes even when restarting my game. The achievements do give the…
3
votes
0 answers

Provoke conflict when using Android Snapshots (Game Play Services)

I have implemented functions to save and load snapshots using the Game API from Google Play Services. The next step I am working on is to handle conflicts when there is more then one snapshot. And here comes the problem. In my understanding a…
copakawusau
  • 145
  • 1
  • 9
3
votes
0 answers

"app won't run without Google play services which are not supported by this device"

The Amazon app store requires that apps on their store don't contain Google Play Services. The app i'm working on uses Play Services in lots and lots of places. I'm trying to disable play services rather than create a separate branch with all of the…
davehenry
  • 1,026
  • 9
  • 24
3
votes
2 answers

Memory leak when removing location update from a fragment in onPause

In one of the fragments in my app, I require location updates in order to determine when the user is near a short list of locations so relevant information is available to the user. When I create a location update request in the onConnected()…
3
votes
0 answers

My GcmTaskService provokes ANR

I made a Service that aims at retrieving data on a server every 10 hours when internet is on. I've very rarely used Service before and I don't understand what happen there,but when I start my app, I get an ANR before the first layout is displayed,…
Renaud Favier
  • 1,645
  • 1
  • 17
  • 33
3
votes
2 answers

FirebaseApp: Firebase API initialization failure

I am facing an error caused by Firebase Api. Here is error log: Firebase API initialization failure. java.lang.reflect.InvocationTargetException Caused by: java.lang.IllegalAccessError: tried to access method…
Emre Alparslan
  • 1,022
  • 1
  • 18
  • 30
3
votes
1 answer

Google Play services out of date. Requires 10084000 but found 8118436

I'm trying to run Google Play Services on my Android emulator using Genymotion. I followed the steps in another Stack Overflow to download and install ARM Translation Installer and the Google Apps for my Android version (5.1.0). Up until this point,…
adam
  • 53
  • 1
  • 10
3
votes
1 answer

Android says duplicate entry, but it's not

I am converting a project from Eclipse to Android Studio. It wasn't easy. I tried to put the AdMob banner and I got an error like this. Error:Execution failed for task ':app:transformClassesWithJarMergingForDebug'. …
3
votes
1 answer

Google asking about Google Play requires policy but I have the valid Permissions in Manifest file?

I developed an android game in Unity, and I only add the two permission in manifest(Internet permission and Internet Access). but Google play warning us about privacy policy that you had added other permission in manifest.xml (e.g. camera,…
3
votes
4 answers

Create an Android Library that uses google play services

I need to create an Android Library that uses google's gcm and location services. Initially I did it inside the application's module and everything went fine. Now I need to create an Android Library to be used by more than one app, and I'm having a…
3
votes
1 answer

Android google play services not working properly

i just update google play services package, but its not working for me.Also i add to manifiset and compile…
Tara
  • 692
  • 5
  • 23
3
votes
0 answers

getLastLocation returns null when called from onActivityResult

I'm using GooglePlayServices location API and it's working fine. (All required permissions have been granted to the app.) Everywhere I execute this piece of code: LocationServices.FusedLocationApi.getLastLocation(googleApiClient); I get the current…