We have an Android app that registers with GCM using Instance ID API.
Unfortunately, the GCM statistics in the Google Play Developer Console show that some registration attempts are apparently answered with the response code "HTTP 200 - User Registration Limit Exceeded".
It is just 0.01%, but we would still like to know, why and when this happens and what we can do about it.
I didn't find any information about a "User Registration Limit". There seem to be or there seem to was a limit for sending notifications, but what about registrations?
Is there any quota on GCM registrations using Instance ID API?
The registration is implemented according to the official documentation, so we are basically calling [instanceID.getToken
](https://developers.google.com/android/reference/com/google/android/gms/iid/InstanceID.html#getToken(java.lang.String, java.lang.String, android.os.Bundle)) on each app start like this:
InstanceID instanceID = InstanceID.getInstance(this);
String token = instanceID.getToken(getString(R.string.gcm_defaultSenderId),
GoogleCloudMessaging.INSTANCE_ID_SCOPE, null);