com.google.android.gms.games.GamesClient не может быть разрешен

Я пытаюсь разработать многопользовательскую игру в режиме реального времени, используя игровые сервисы Google Play, и загружаю образец (ButtonClicker2000), но Eclipse ADK продолжает жаловаться на то, что com.google.android.gms.games.GamesClient не может быть разрешен.

Весь остальной импорт работает нормально:

import com.google.android.gms.games.Games;
import com.google.android.gms.games.GamesActivityResultCodes;
import com.google.android.gms.games.multiplayer.Invitation;
import com.google.android.gms.games.multiplayer.OnInvitationReceivedListener;
import com.google.android.gms.games.multiplayer.Participant;
import com.google.android.gms.games.multiplayer.realtime.RealTimeMessage;
import com.google.android.gms.games.multiplayer.realtime.RealTimeMessageReceivedListener;
import com.google.android.gms.games.multiplayer.realtime.Room;
import com.google.android.gms.games.multiplayer.realtime.RoomConfig;
import com.google.android.gms.games.multiplayer.realtime.RoomStatusUpdateListener;
import com.google.android.gms.games.multiplayer.realtime.RoomUpdateListener;
import com.google.example.games.basegameutils.BaseGameActivity;

Кто-нибудь знает, как это исправить?

Ответы на вопрос(1)

Ваш ответ на вопрос