I know, this question already exists in many shapes but I can't still solve my problem. The issue is that when I run my application and try to sign in with Google Play Game Services it shows me this message:
"The application is incorrectly configured. Check that the package name and signing certificate match the client ID created in Developer Console. Also, if the application is not yet published, check that the account you are trying to login with is listed as a tester account. See logs for more information."
What I've already tried:
- ensure the package name on my AndroidManifest.xml was correct
- checked my SHA1 and compared with the SHA1 of my linked app (even created a new one with the same SHA1 just to be sure)
- added my Google+ account to the tester list
wrote the code:
android:name="com.google.android.gms.version" android:value="@integer/google_play_services_version"
with the correct ID in my string value
But the error is still not fixed. Now I've just thought the issue cold be on the segment of code:
android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />
but I'm not able to find this value to check it (I'm working on a libgdx project and the google_play_service package is not in my project hierarchy but everything else works fine). Not sure if this could be my problem, what else could I do?


