排行榜未出现 - Android Native Plugin

时间:2016-09-11 14:02:22

标签: android plugins unityscript unity5

我使用Android Native Plugin连接到排行榜。首先,我使用

创建了连接到Google服务的应用程序

GooglePlayConnection.instance.connect();

然后单击一个按钮时,将调用下面的函数。

public void ShowLeaderboard(string leaderboardName)
{
    GooglePlayManager.instance.ShowLeaderBoard("leaderboard_score");

}

应用程序显示连接到框,但是当我点击按钮显示排行榜时,没有任何反应。

然后我尝试将两个功能组合成一个如下所示,但排行榜也没有显示。第一次点击将显示连接到谷歌播放服务框,但第二次没有显示排行榜。

public void LeaderboardButton(){
    if(GooglePlayConnection.state == GPConnectionState.STATE_CONNECTED) {
        GooglePlayManager.instance.ShowLeaderBoard("leaderboard_score");
        } else{
        GooglePlayConnection.instance.connect ();
    }
}

我想知道是因为代码还是因为android原生窗口中的设置 - >编辑设置?

1 个答案:

答案 0 :(得分:0)

我假设您在Google Play开发者控制台设置中拥有所有内容,在阅读完文档之后我会相信第3行应该是GooglePlayManager.instance.ShowLeaderBoardsUI("leaderboard_score");