5

As title says, I encounter this problem. Documentation says to do this:

<meta-data android:name="com.google.android.gms.APP_ID"
android:value="@string/app_id" />

I had done and my app_id is 12 digits. Other people getting this similar error was their app_id s were more than 12 digits. But mine is 12. However, it does not work, I cant sign in. Error also says check your manifest. I have checked and it is the same as above. Why is application id ,which i got it from google play console, not associated with my package name? Do i have to do something with sha1 key? (I am now in th alpha test)

Regards

4 Answers 4

5

I also received this error and fixed it by adding one of my tester accounts to the Google Play Services list of testers for the app.

The account I had on the tablet was not in the list of permitted tester accounts in the Google Play Console.

Once I had done this, I was able to connect with no issues.

For reference my app_id entry looks like this :-

        <meta-data
        android:name="com.google.android.gms.games.APP_ID"
        android:value="@string/app_id"/>
3

you must also check that users gmail id is added in testing or not ? if not then add it to Play Console -> Game Services -> Testing

1

You seem to have an extra .appstate in the android:name for the APP_ID. Mine looks like this:

<meta-data android:name="com.google.android.gms.games.APP_ID"
                android:value="@string/gplus_id" />

Also, make certain that you don't have another string called app_id or it may get confused. This is why I called mine gplus_id.

1

I had the same issue and I fixed it by deleting

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

from AndroidManifest.xml.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

Not the answer you're looking for? Browse other questions tagged or ask your own question.