When I try to run the Game with GooplayService, Logcat show the following error:
"The Google Play services resources were not found. Check your project configuration to
ensure that the resources are included."
My code login Google Play Game Service:
@Override
public void loginGPGS() {
try {
runOnUiThread(new Runnable() {
@Override
public void run() {
gameHelper.beginUserInitiatedSignIn();
}
});
} catch (final Exception ex) {
}
}
Problem
when I tried to run the Game 2nd, its auto login Google play game service. I didn't get any error on the Device, but Logcat show the following error.
"Unknown issue with google play service".
I can't login Google Play Game Service, and device show the above error.
I using Genymotion, lastest version of google play game service.