Skip to content

BuildID 5.0.2 and 5.0.3

I found something weird but interesting concerning json .modules files in 5.0.2 and 5.0.3:

Both version 5.0.2 and 5.0.3 as the same builID but, this doesn't work in 5.0.2:

json
UnrealEditor.modules
{"BuildId":19505902, "Modules": {"YourPluginName": "UnrealEditor-YourPluginName.dll"}}

But work in 5.0.3.

To avoid error between these 2 versions and to keep compatibility, buildID in string format work well, like this:

json
{"BuildId":"19505902", "Modules": {"YourPluginName": "UnrealEditor-YourPluginName.dll"}}