Hi, everyone. I wan to add some frameworks to my plugin, but I have some problem.
I use Xcode to lunch project to iPhone or iPad, hit breakpoint and debug log show this error when app start .
dyld: Library not loaded: @rpath/AWSCore.framework/AWSCore
Referenced from: /var/containers/Bundle/Application/F18C4389-A9A2-446B-AC61-B7121C2C81DD/PluginDevZone.app/PluginDevZone
Reason: image not found
(lldb)
this is build.cs.
if (Target.Platform == UnrealTargetPlatform.IOS)
{
PublicAdditionalFrameworks.Add(
new UEBuildFramework(
"AWSCore",
"ThirdParty/AWSCore.embeddedframework.zip")
);
PublicFrameworks.AddRange(
new string[]
{
"CoreGraphics",
"Foundation",
"UIKit"
}
);
}
framework link here.
Anyone know how to fix it?
Tell me, please.