User Report Submission Error

I have been using User Report for a while and it is has been working for our project. Just yesterday, I realized that all my previous user reports are removed and i can’t successfully send any user reports for the project anymore. No more reports show up.

The weird thing is that when I unlink the project and then link it to create a new project then everything works. Is there any reason for this?

Reports expire after a certain amount of time, depending on whether your Personal, Plus, or Pro. This is probably why they were removed.

Regarding linking and unlinking the project, it’s possible that your project ID wasn’t properly linked to your project, which would cause reports not to appear.

Also, make sure you are using the latest version of the SDK which was just released a few days ago. It corrected an issue where reports were being sent successfully, but it was being reported as an error.

Let me know if you have anymore issues. :slight_smile:

I linked the project to a new project and then linked it back to the original project and the user report still not submitting.
Is there a way to make sure the project is linked properly?
I get a success=false with the following when submitting the report. The exact same code works when linking to a new project.

 UnityUserReporting.CurrentClient.SendUserReport(this.CurrentUserReport, (uploadProgress, downloadProgress) =>
        {
            if (this.ProgressText != null)
            {
                string progressText = string.Format("{0:P}", uploadProgress);
                //this.ProgressText.text = progressText;
            }
        }, (success, br2) =>
        {
            if (!success)
            {
                this.isShowingError = true;

                submissionError = "error";

                //this.ProgressText.text = "submit error";
                //this.StartCoroutine(this.ClearError());
            }

            this.CurrentUserReport = null;
            this.isSubmitting = false;
        });

Tried importing the latest User Report SDK and it is the same issue. And I’m using the version that is used for 2018.3 and above.

Just a quick question, our Unity cloud project has many cloud build settings already and pointing to a bitbucket repo. Could I just link the project to a new project and will those cloud builds still work?? since it is pointing to the repo branches for a new build.

Thanks.