addAPI(Games.API)应用程序崩溃了

时间:2016-11-21 19:53:25

标签: android google-api google-api-client leaderboard

你好LeaderBoard有一个很大的问题

我使用此代码通过app ..登录gmail。

mGoogleApiClient = new GoogleApiClient.Builder(this)
            .enableAutoManage(this /* FragmentActivity */, this /* OnConnectionFailedListener */)
            .addApi(Auth.GOOGLE_SIGN_IN_API, gso)
            .build();

这个代码运行完美。登录到帐户,一切都好......

但是当我尝试用这个代码打开LeaderBoard时......

Games.Leaderboards.submitScore(mGoogleApiClient,  "XXXXX02386600-n1nl2jfkpgsuhi1bogkqhmitsadi4icl.apps.googleusercontent.com", 1337);

startActivityForResult(Games.Leaderboards.getLeaderboardIntent(mGoogleApiClient,
                "XXXXXX02386600-n1nl2jfkpgsuhi1bogkqhmitsadi4icl.apps.googleusercontent.com"), 101);

并写入错误

java.lang.IllegalStateException: GoogleApiClient is not configured to use the Games Api. Pass Games.API into GoogleApiClient.Biulder#addApi() tp use this feature

如果将.addApi(Games.API)放入

GoogleApiClient.Builder(this)
        .enableAutoManage(this /* FragmentActivity */, this /* OnConnectionFailedListener */)
        .addApi(Auth.GOOGLE_SIGN_IN_API, gso)
        .addApi(Games.API)            
        .build();

应用程序崩溃了。

我有这个进口

    import com.google.android.gms.games.Games;
import com.google.android.gms.auth.api.Auth;
import com.google.android.gms.auth.api.signin.GoogleSignInAccount;
import com.google.android.gms.auth.api.signin.GoogleSignInOptions;
import com.google.android.gms.auth.api.signin.GoogleSignInResult;
import com.google.android.gms.common.ConnectionResult;
import com.google.android.gms.common.SignInButton;
import com.google.android.gms.common.api.GoogleApiClient;
import com.google.android.gms.common.api.OptionalPendingResult;
import com.google.android.gms.common.api.ResultCallback;
import com.google.android.gms.common.api.Status;

我不知道哪里出了问题,也许是错ID?我在哪里找到好身份证?

如果您有想法或好的代码,请放在这里。

感谢。

1 个答案:

答案 0 :(得分:0)

进入谷歌游戏不通过谷歌+登录 你需要使用谷歌开发者的BacisSamples。并将其添加到您的代码中。