Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is com.google.android.gms.version?

I am working in a old project which has this snippet to use in google play service:

<meta-data android:name="com.google.android.gms.version"
    android:value="@integer/google_play_services_version" />

I couldn't find any official documentation about this, I know however that is used in device location and I would like to know what is used for because I am getting an exception and I think it may be related:

[AppCertManager] IOException while requesting key:                                   
java.io.IOException: Invalid device key response.                                                                              
at evk.a(:com.google.android.gms:274)                                                                              
at evk.a(:com.google.android.gms:4238)                                                                              
at evj.a(:com.google.android.gms:45)                                                                              
at evd.a(:com.google.android.gms:50)                                                                              
at evc.a(:com.google.android.gms:104)                                                                              
at com.google.android.gms.auth.account.be.legacy.AuthCronChimeraService.b(:com.google.android.gms:4049)                                                                              
at ecm.call(:com.google.android.gms:2041)                                                                              
at java.util.concurrent.FutureTask.run(FutureTask.java:237)                                                                              
at llt.run(:com.google.android.gms:450)                                                                              
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1113)                                                                              at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:588)                                                                              at lqc.run(:com.google.android.gms:17)                                                                              at java.lang.Thread.run(Thread.java:818)

Cheers!

like image 942
Josema Avatar asked May 16 '17 15:05

Josema


People also ask

What is com google.android GMS used for?

Google Mobile Services (GMS) is a collection of Google applications and APIs that help support functionality across devices. These apps work together seamlessly to ensure your device provides a great user experience right out of the box.

Do I need Android GMS?

You do not need a GMS license to run Android OS on your devices; it is completely free; for example, Amazon uses Android for its Fire smartphone without any sort of agreement with Google. To receive an Android device certification, the devices must pass several Google-designed compatibility tests and processes.

What is com Google GMS?

Google Mobile Services (GMS) is a collection of applications and application programming interfaces (APIs) developed by Google for manufactures of Android devices, such as smartphones and tablets.

What is com google/android GM notifications?

“com.google.android.gm” is a package name used for Gmail services. The user receives the message “The application Google Play Services (com. google. android. gms) has stopped unexpectedly.


1 Answers

That is the Google Play Services Version Number.

This may help you with your error, though I'm not sure of the code that's throwing it.

like image 98
airowe Avatar answered Oct 04 '22 02:10

airowe