Exemple #1
0
    /// <summary>
    /// Shows a dialog to the user with the given message and logs the error message to console.
    /// </summary>
    /// <param name="message">The failure message to be shown to the user.</param>
    public static void ShowBuildFailureDialog(string message)
    {
        var openIntegrationManager = EditorUtility.DisplayDialog("AppLovin MAX", message, "Open Integration Manager", "Dismiss");

        if (openIntegrationManager)
        {
            AppLovinIntegrationManagerWindow.ShowManager();
        }

        Debug.LogError("[AppLovin MAX] " + message);
    }
 private static void ShowIntegrationManager()
 {
     AppLovinIntegrationManagerWindow.ShowManager();
 }