Hi,
I hope you’ve solved this issue already, but if it’s not you need to adjust InstalledEngineBuild.xml a bit.
This error appears on ipa stub creation, so you need to disable it and engine generation procedure will not require profiles anymore.
For the stock version of Engine\Build\InstalledEngineBuild.xml this instruction appears at 428 and 443 lines - simply remove ‘-createstub’ flag and all will be good:
<Compile Target="$(Target)" Platform="IOS" Configuration="$(Configuration)" Tag="#UE4Game IOS" Arguments="-precompile **-createstub** $(TargetDebugInfoArg)" Clean="false"/>
replace with
<Compile Target="$(Target)" Platform="IOS" Configuration="$(Configuration)" Tag="#UE4Game IOS" Arguments="-precompile $(TargetDebugInfoArg)" Clean="false"/>
Regards,