Exemple #1
0
    void CheckDeepLink()
    {
        Debug.Log("Checking for deeplink.");

        string deepLink = UAirship.GetDeepLink();

        if (!string.IsNullOrEmpty(deepLink))
        {
            Debug.Log("Launched with deeplink! " + deepLink);

            // Handle any deep links here
        }
    }