在尝试使用Unity3D访问Google Play用户名时,我收到了一些中文字符:
void Start () {
PlayGamesPlatform.Activate();
// Social.localUser.Authenticate(ProcessAuthentication);
PlayGamesPlatform.DebugLogEnabled = true;
Social.localUser.Authenticate(success => {
if (success)
{
Debug.Log("Authentication successful");
userInfo = Social.localUser.userName ;
Debug.Log(userInfo);
}
else
Debug.Log("Authentication failed");
});
}
void Update () {
txt = GameObject.Find("txt").GetComponent<Text>();
txt.text = userInfo;
}
}
我已经检查过用户是否真的通过Google Play验证了,而且他是。我在手机上收到此错误(Samsung S6)。 任何想法如何解决这个问题?