here is my problem: when I try to create a quick turn-based match using google game services, it only works when I set automatch criteria and the min players number equals to the max players number, like this:
Bundle autoMatchCriteria = RoomConfig.createAutoMatchCriteria(N,N,0);
TurnBasedMatchConfig.Builder tbmcBuilder = TurnBasedMatchConfig.builder().setAutoMatchCriteria(autoMatchCriteria);
Games.TurnBasedMultiplayer.createMatch(mGoogleApiClient, tbmcBuilder.build())
.setResultCallback(new MatchInitiatedCallback());
Now, if I don't set automatch criteria (which is allowed according to the description) or set them when min automatch players is not equal to max automatch players, in response from the server I get an error with a status code 6004 STATUS_MULTIPLAYER_ERROR_INVALID_OPERATION.
Does anyone know if it's a bug or am I doing something wrong?
Thanks!
Okay, I found the problem. It didn't work because I set max automatch players to 8 and apparently 7 is the limit.