Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
614 views
in Technique[技术] by (71.8m points)

swift - ignored iOS framework is detected in Mac catalyst Xcode 12

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

2.1m questions

2.1m answers

60 comments

56.8k users

...