How to include MobilePatchingUtils.h into the project?

in ur Project.Build.cs, please add

    		PrivateIncludePaths.AddRange(
    			new string[] {
    				// ... add other private include paths required here ...
                    "../../Runtime/MobilePatchingUtils/Source/MobilePatchingUtils/Private/",
                }

Meanwhile, please make sure the below are mentioned in yours respectively.

            PublicDependencyModuleNames.AddRange(new string[]
            {
                "Core",
                "CoreUObject",
                "Engine",
            });

            PrivateDependencyModuleNames.AddRange(new string[]
            {
                "PakFile",
                "HTTP",
                "BuildPatchServices"
            });
1 Like