ERROR: Unable to instantiate module 'Launch': System.FormatException: Input string was not in a correct format

When I try to ship my project to iTunes connect I get the following error:

ERROR: Unable to instantiate module ‘Launch’: System.FormatException: Input string was not in a correct format.

I’ve tried to figure out the problem because I don’t really understand what the log says this time.

Full log:

282226-skarmavbild-2019-07-11-kl-174525.png

Hi! Here is my solution unreal engine4 - Error: Unable to instantiate module 'Launch': System.FormatException: Input string was not in a correct format - Stack Overflow

System.FormatException is a type of exception in the .NET framework. It is thrown when an invalid format is encountered while parsing a string representation of a data type. For example, if you try to parse a string that is not a valid integer representation using the int.Parse() method (string to int) , it will throw a System.FormatException. The exception indicates that the string does not conform to the expected format for the type being parsed.

To fix a System.FormatException in your code, you need to handle the exception and provide an appropriate solution based on the scenario