无法将我的Android应用连接到Google Play服务

时间:2019-07-26 20:27:00

标签: android unity3d google-play-services

当我启动该应用程序时,我停留在第一个场景上,什么都没有发生,几秒钟后它崩溃了。谢谢您的帮助。

public Text mainText;

void Start()
{
    AuthenticateUser();    
}

void AuthenticateUser()
{
    PlayGamesClientConfiguration config = new PlayGamesClientConfiguration.Builder().Build();
    PlayGamesPlatform.InitializeInstance(config);
    PlayGamesPlatform.Activate();
    Social.localUser.Authenticate((bool success) =>
    {
        if (success == true)
        {
            SceneManager.LoadScene("Menu");
        }
        else
        {
            mainText.text = "Could not login to Google Play Games Services";
            mainText.color = Color.red;
            SceneManager.LoadScene("Menu");
        }
    });
}

0 个答案:

没有答案