通过广告通知应用程序下载?

Notification of app download through an ad?

我在我的游戏中使用 Unity Ads,通过使用 HandleShowResult 函数,我可以查看广告是完成、跳过还是失败。这很好用,但是,是否还有一种方法可以查明用户是否下载了该特定广告中的应用程序?

private void HandleShowResult (ShowResult result)
{
    switch (result)
    {
    case ShowResult.Finished:
        Debug.Log ("Video completed. User rewarded " + rewardQty + " credits.");
        break;
    case ShowResult.Skipped:
        Debug.LogWarning ("Video was skipped.");
        break;
    case ShowResult.Failed:
        Debug.LogError ("Video failed to show.");
        break;
    }
}        

我很确定没有办法做到这一点,但是...

您可以在 HandleShowResult 之后立即使用 OnApplicationFocus。至少你可能知道你的玩家去了商店。