I have enabled Mac catalyst option in my project , so that I have ignored some framework which is not supported for x86_64 architecture . but some how its been detected and getting this error
"ld: library not found for -laCPAnalytics_iOS"
Steps I followed :
Changed that framework platform to only iOS from iOS + Mac
In cocoa pods add ignored catalyst lines
def unsupported_pods
['ACPCore', 'ACPAnalytics', 'ACPUserProfile']
end
def supported_pods
['SDWebImage']
end
post_install do |installer|
$verbose = true # remove or set to false to avoid printing
installer.configure_support_catalyst(supported_pods, unsupported_pods)
end
Also added ACP codes inside
#if !targetEnvironment(macCatalyst)
#endif
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…